Is the String Empty?

Published by Helen Yu in

Create a function that returns true if a string is empty and false otherwise.

Examples

is_empty("") ➞ true

is_empty(" ") ➞ false

is_empty("a") ➞ false

Notes

  • A string containing only whitespaces " " does not count as empty.
  • Don't forget to return the result.
  • If you get stuck on a challenge, find help in the Resources tab.
  • If you're really stuck, unlock solutions in the Solutions tab.
Watch a quick demo on how Edabit works.