if (typeof num === 'number')if (num instanceof Number || Object.prototype.toString.call(num) === '[object Number]')if (num.constructor === Number)
Integer:
if (Number.isInteger(num))if (num % 1 === 0)if (Number.isSafeInteger(num)) // The **`Number.isSafeInteger()`** method determines whether a value is a safe integer (within the range of **`-2^53`** to **`2^53 - 1`**).
Float:
if (!Number.isInteger(num))if (num % 1 !== 0)
NaN:
if (Number.isNaN(value))if (isNaN(value))if (value !== value) // As mentioned earlier, **`NaN`** is the only value that is not equal to itself. You can take advantage of this property for detection.
BigInt:
if (typeof bigIntValue === 'bigint')if (bigIntValue.constructor === BigInt)if (bigIntValue instanceof BigInt || Object.prototype.toString.call(bigIntValue) === '[object BigInt]')if (BigInt.asIntN(64, bigIntValue) === bigIntValue) // This method can check if the value is within the range of a certain bit length
Symbol:
if (typeof symbolValue === 'symbol')if (symbolValue === Symbol.iterator)if (symbolValue instanceof Symbol || Object.prototype.toString.call(symbolValue) === '[object Symbol]')if (symbolValue.constructor === Symbol)
if (nullValue === null)if (typeof nullValue === 'object' && nullValue === null) // The **`typeof`** operator returns **`'object'`** for **`null`**, which is a historical quirk and not a true indication of its type. Therefore, using strict equality (**`===`**) is the preferred way to check for **`null`** values.
Undefined:
if (undefinedValue === undefined)if (typeof undefinedValue === 'undefined')if (undefinedValue === undefinedValue) // **Checking if a variable is declared but not assigned a value**if (undefinedValue === void 0)