Como verificar se a entrada de texto tem espaços javascript
function hasWhiteSpace(s) {
return s.indexOf(' ') >= 0;
}
Elegant Emu
function hasWhiteSpace(s) {
return s.indexOf(' ') >= 0;
}