Comment vérifier si l'entrée du texte a des espaces javascript
function hasWhiteSpace(s) {
return s.indexOf(' ') >= 0;
}
Elegant Emu
function hasWhiteSpace(s) {
return s.indexOf(' ') >= 0;
}