Checks if a value is undefined.
The value to be checked.
A boolean indicating whether the value is undefined or not.
const result = isUndefined(someValue);console.log(result); // true or false Copy
const result = isUndefined(someValue);console.log(result); // true or false
Generated using TypeDoc
Checks if a value is undefined.