function hasWhiteSpace(s) {
return s.indexOf(' ') >= 0;
}
//or
function hasWhiteSpace(s) {
return /\s/g.test(s);
}
function hasWhiteSpace(s) {
return s.indexOf(' ') >= 0;
}
//or
function hasWhiteSpace(s) {
return /\s/g.test(s);
}