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