Menu
×
×
Correct!
Exercise:Find the position of the character
let txt = "abcdefghijklm";
let pos = txt.indexOf("h");
let txt = "abcdefghijklm";
let pos = txt.indexOf('h');
Not CorrectClick here to try again. Correct!Next ❯let txt = "abcdefghijklm"; let pos = txt.; |