Signature: isEmpty(s: string) -> bool
Description: True if string has zero length.
Parameters
- s (string): The string to test
Returns: bool
Example
let blank = isEmpty("") // true
Signature: isEmpty(s: string) -> bool
Description: True if string has zero length.
Returns: bool
let blank = isEmpty("") // true