The length property returns the length of a string (number of characters).
The length property returns the length of a string (number of characters).
The length of an empty string is 0.
string.length
The length of a string
Return the number of characters in a string:
//return the number of characters in the string "Hello World!". var str = "Hello World!"; var n = str.length; console.log(n);/* www . ja va 2s.c o m*/