Assessment Mode
Strings Challenge
Step
1
/15
Correct
0
Guess the output of at() with negative index:
let
text =
'RAHUL'
;
console
.
log
(text.
at
(-
1
), text[-
1
]);
A
R R
B
A R
C
undefined
D
L undefined
Check Answer