Check if value is of type

JavaScript, Type · Oct 20, 2020

Checks if the provided value is of the specified type.

const is = (type, val) => ![, null].includes(val) && val.constructor === type;
is(Array, [1]); // true
is(ArrayBuffer, new ArrayBuffer()); // true
is(Map, new Map()); // true
is(RegExp, /./g); // true
is(Set, new Set()); // true
is(WeakMap, new WeakMap()); // true
is(WeakSet, new WeakSet()); // true
is(String, ''); // true
is(String, new String('')); // true
is(Number, 1); // true
is(Number, new Number(1)); // true
is(Boolean, true); // true
is(Boolean, new Boolean(true)); // true

More like this

  • Value is array-like

    Checks if the provided argument is array-like (i.e. is iterable).

    JavaScript, Type · Oct 20, 2020

  • Value is plain object

    Checks if the provided value is an object created by the Object constructor.

    JavaScript, Type · Oct 20, 2020

  • Value is nil

    Checks if the specified value is null or undefined.

    JavaScript, Type · Oct 20, 2020