Files
30-seconds-of-code/snippets/is-boolean.md
Angelos Chalaris 3aa0c5eec0 Added isX functions
2017-12-14 12:56:02 +02:00

205 B

Is boolean

Use typeof to check if a value is classified as a boolean primitive.

const isBoolean = val => typeof val === 'boolean';
// isBoolean(null) -> false
// isBoolean(false) -> true