Files
30-seconds-of-code/snippets/check_for_boolean
2017-12-13 21:52:51 +05:30

11 lines
208 B
Plaintext

### 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);