273 B
273 B
title, tags
| title | tags |
|---|---|
| isUndefined | type,beginner |
Checks if the specified value is undefined.
- Use the strict equality operator to check if
valis equal toundefined.
const isUndefined = val => val === undefined;
isUndefined(undefined); // true