Tell us what’s happening:
Describe your issue in detail here.
Im still new to this and im trying to understand why or how it works
so this part
const secondToLastLetterOfLastName = lastName[lastName.length - 2};
this was the answer but , if i try to change second to third and -2 to -3, it wont work, is there a reason why?> trying to understand it. Thanks
Your code so far
// Setup
const lastName = "Lovelace";
// Only change code below this line
const secondToLastLetterOfLastName = lastName; // Change this line
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36
Challenge: Use Bracket Notation to Find the Nth-to-Last Character in a String
because the challenge wants a variable named secondToLastLetterOfLastName
the variable name itself doesn’t have any specific meaning for JavaScript, it’s just a bunch of characters put together to identify a value
so if you use the variable thirdToLastLetterOfLastName that will be a completely different variable which is not recognised by the code used to test this challenge
Ohh i see, the way i thinking it was that i knew is a variable, but if i was trying something else it didnt work, but if its based on the challenge then yeaa makes sence. thanks