Files
30-seconds-of-code/snippets/isNull.md
Isabelle Viktoria Maciohsek caa67e2a49 Update snippet descriptions
2020-10-20 23:02:01 +03:00

251 B

title, tags
title tags
isNull type,beginner

Checks if the specified value is null.

  • Use the strict equality operator to check if the value of val is equal to null.
const isNull = val => val === null;
isNull(null); // true