Challenge Find The Length Of A String - ashish9342/FreeCodeCamp GitHub Wiki

Challenge Find the Length of a String

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.

⚠️ **GitHub.com Fallback** ⚠️