Checks if a given value is empty or not.
isEmpty(null)// => trueisEmpty(undefined)// => trueisEmpty(NaN)// => trueisEmpty(true)// => trueisEmpty(111)// => trueisEmpty('')// => trueisEmpty('message')// => falseisEmpty([])// => trueisEmpty(['apple', 'banana'])// => falseisEmpty({})// => trueisEmpty({ message: 'hello' })// => false Copy
isEmpty(null)// => trueisEmpty(undefined)// => trueisEmpty(NaN)// => trueisEmpty(true)// => trueisEmpty(111)// => trueisEmpty('')// => trueisEmpty('message')// => falseisEmpty([])// => trueisEmpty(['apple', 'banana'])// => falseisEmpty({})// => trueisEmpty({ message: 'hello' })// => false
The type of the input value.
The value to be checked.
true if the given value is empty, and false otherwise.
true
false
Generated using TypeDoc v0.24.7
Checks if a given value is empty or not.
Example