Basic JavaScript - Find the Length of a String

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

// Setup
let lastNameLength = 0;
const lastName = "Lovelace";

// Only change code below this line
let lastNameLenght = "LoveLace"
lastNameLength.lenght;
lastName.lenght;

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Find the Length of a String

Link to the challenge:

You are spelling it lenght. It needs to be length.
You are also setting the new variable you created to the text of the original variable. As the challenge asks you need to set the new variable to equal the length of the variable the challenge provided.

I recommend restarting the challenge. Only create one variable, and set that to length of the original variable

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.