string contains
indexOf returns the position of the string in the other string. If not found, it will return -1:
var s = "foo";
alert(s.indexOf("oo") > -1);
- Log in to post comments
indexOf returns the position of the string in the other string. If not found, it will return -1:
var s = "foo";
alert(s.indexOf("oo") > -1);