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