Jak sprawdzić, czy wejście tekstowe ma spacje JavaScript

function hasWhiteSpace(s) {
  return s.indexOf(' ') >= 0;
}
Elegant Emu