Javascript how to check if the number is NaN code example Example: javascript check if is nan function isNaN(x) { return x !== x; }; isNaN(NaN);//true