by Helen Yu tags: strings, regex, validation
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. Don't forget to return the result. If you get stuck on a challeng
Create a function that returns true
if a string contains any spaces.
hasSpaces("hello") ➞ false
hasSpaces("hello, world") ➞ true
hasSpaces(" ") ➞ true
hasSpaces("") ➞ false
hasSpaces(",./!@#") ➞ false
return
the result.