Link Search Menu Expand Document

Find the Length of a String

Summary

  • The length of a String can be found using .length after a varible or string literal.

Final Code

// Setup
var lastNameLength = 0;
var lastName = "Lovelace";

// Only change code below this line

lastNameLength = lastName.length;