Create a function that returns true if a string is empty and false otherwise.
true
false
isEmpty("") ➞ true isEmpty(" ") ➞ false isEmpty("a") ➞ false
" "
return