Java教程

25 String 对象中的属性

本文主要是介绍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>
这篇关于25 String 对象中的属性的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!