25 String 对象中的属性

<!DOCTYPE html> <html lang="en">   <head>     <meta charset="UTF-8" />     <meta http-equiv="X-UA-Compatible" content="IE=edge" />     <meta name="viewport" content="width=device-width, initial-scale=1.0" />     <title>Document</title>     <!-- String 对象中的属性 -->   </head>   <body>     <script>       var str = new String("JavaScript");       String.prototype.name = null;       str.name = "Hello World!";       document.write(str.constructor + "</br>");       // 输出:function String(){[native code]}       document.write(str.length + "</br>");       // 输出:10       document.write(str.name);       // 输出:Hello World!     </script>   </body> </html>
上一篇:网课杂记其四


下一篇:7-7 哈利·波特的考试 (25 分)