342 B
342 B
title, type, tags, cover, dateModified
| title | type | tags | cover | dateModified | |
|---|---|---|---|---|---|
| Value is undefined | snippet |
|
peaches | 2020-10-20T23:02:01+03:00 |
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