Files
30-seconds-of-code/snippets/check_for_boolean.md
2017-12-13 21:56:13 +05:30

208 B

Check for Boolean Primitive Values

Check if a value is classified as a boolean primitive. Return true or false.

function booWho(bool) { return typeof bool === 'boolean'; }

// test here booWho(null);