开发学院

您的位置:首页>教程>正文

教程正文

ES6 String对象属性Length

ES6 String对象属性Length

  返回字符串的长度

语法

string.length

例子

var uname = new String("Hello World") 
console.log(uname) 
console.log("Length "+uname.length)  
// returns the total number of characters 
// including whitespace

输出

Hello World 
Length 11