208 B
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);