Skip to content

Challenge Find the Length of a String

SaintPeter edited this page · 1 revision
Clone this wiki locally

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.

Something went wrong with that request. Please try again.