0
, so the first character is actually the zeroth character.
thirdLetterOfLastName
to equal the third letter of the lastName
variable using bracket notation.
HintsecondLetterOfFirstName
variable declaration if you get stuck.
thirdLetterOfLastName
variable should have the value of v
.
testString: 'assert(thirdLetterOfLastName === ''v'', ''The thirdLetterOfLastName
variable should have the value of v
.'');'
- text: You should use bracket notation.
testString: 'assert(code.match(/thirdLetterOfLastName\s*?=\s*?lastName\[.*?\]/), ''You should use bracket notation.'');'
```