Files
30-seconds-of-code/snippets/is-undefined.md
2023-04-28 22:29:23 +03:00

342 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Value is undefined snippet
type
peaches 2020-10-20T23:02:01+03:00

Checks if the specified value is undefined.

  • Use the strict equality operator to check if val is equal to undefined.
const isUndefined = val => val === undefined;
isUndefined(undefined); // true