Challenge Find The Length Of A String - ashish9342/FreeCodeCamp GitHub Wiki
You can find the length of a String value by writing .length
after the string variable or string literal.
"Alan Peter".length; // 10
For example, if we created a variable var firstName = "Charles"
, we could find out how long the string "Charles" is by using the firstName.length
property.