363 B
363 B
title, type, language, tags, cover, dateModified
| title | type | language | tags | cover | dateModified | |
|---|---|---|---|---|---|---|
| Value is undefined | snippet | javascript |
|
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