scrimba
Learn Basic JavaScript
Find the Length of a String
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Find the Length of a String
AboutCommentsNotes
Find the Length of a String
Expand for more info
index.js
run
preview
console
// Example
var firstNameLength = 0;
var firstName = "Ada";

firstNameLength = firstName.length;

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

// Only change code below this line.

lastNameLength = lastName;
Console
index.html
-0:47