Basic JavaScript - Use Bracket Notation to Find the Nth Character in a String

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

Your code so far

// Setup
const lastName = "Lovelace";

// Only change code below this line
const thirdLetterOfLastName= 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/110.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Use Bracket Notation to Find the Nth Character in a String

Link to the challenge:

It doesn’t look like you’ve made any changes to the default code. Did you have a question about this challenge?

hello and welcome to fcc forum :slight_smile:

did you understand what was happening in “example” in instructions?

const firstName = "Ada";
const secondLetterOfFirstName = firstName[1];
`secondLetterOfFirstName` would have a value of the string `d`

if so then lets read from instructions once again

Let’s try to set thirdLetterOfLastName to equal the “third letter” of the lastName variable using bracket notation

address that change and it should be alright, happy learning :slight_smile:

1 Like

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