// str.indexOf(searchValue[, fromIndex])
var s = 'Online JavaScript Cloud Products';
document.write(s.indexOf('JavaScript') + "<br />"); // 7
document.write('PHP JavaScript'.indexOf('PHP') + "<br />"); // 0
document.write(s.indexOf('Online') + "<br />"); // 0
document.write(s.indexOf('Onlinee') + "<br />"); // -1
document.write(s.indexOf('JavaScript', 0) + "<br />"); // 7
document.write(s.indexOf('JavaScript', 7) + "<br />"); // 7
document.write(s.indexOf('', 1) + "<br />"); // 1
document.write(s.indexOf('', 7) + "<br />"); // 7
document.write(s.indexOf('', 130) + "<br />"); // 32
document.write(s.indexOf('', 280) + "<br />"); // 32
/*
run:
7
0
0
-1
7
7
1
7
32
32
*/