Skip to content

Challenge Find The Length Of A String

Quincy Larson edited this page Aug 20, 2016 · 1 revision

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.

Clone this wiki locally