Check String for Spaces

Published by Pickle 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

Try doing this without RegEx.

Watch a quick demo on how Edabit works.