0
, so the first character is actually the zeroth character.
Example:
```js
var firstName = "Ada";
var secondLetterOfFirstName = firstName[1]; // secondLetterOfFirstName is "d"
```
thirdLetterOfLastName
to equal the third letter of the lastName
variable using bracket notation.
Hint: Try looking at the example above if you get stuck.
thirdLetterOfLastName
variable should have the value of v
.
testString: assert(thirdLetterOfLastName === 'v');
- text: You should use bracket notation.
testString: assert(code.match(/thirdLetterOfLastName\s*?=\s*?lastName\[.*?\]/));
```