Check String for Spaces

Published by Peter Flynn in

Create a function that returns true if a string contains any spaces.

Examples

hasSpaces("hello") ➞ false

hasSpaces("hello, world") ➞ true

hasSpaces(" ") ➞ true

hasSpaces("") ➞ false

hasSpaces(",./!@#") ➞ false

Notes

  • An empty string does not contain any spaces.
  • Try doing this without RegEx.
Watch a quick demo on how Edabit works.