Language Basics JavaScript DHTML

/* first position in the string is 0! */



var str="JavaScript is great!"
var pos=str.indexOf("great")
if (pos>=0){
    document.write("great found at position: ")
    document.write(pos + "
")
}else{
    document.write("great not found!")
}