-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10-boo-who.js
32 lines (29 loc) · 892 Bytes
/
10-boo-who.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
Boo who:
Check if a value is classified as a boolean primitive. Return true or false.
Boolean primitives are true and false.
- booWho(true) should return true.
- booWho(false) should return true.
- booWho([1, 2, 3]) should return false.
- booWho([].slice) should return false.
- booWho({ "a": 1 }) should return false.
- booWho(1) should return false.
- booWho(NaN) should return false.
- booWho("a") should return false.
- booWho("true") should return false.
- booWho("false") should return false.
*/
function booWho(bool) {
return bool === true || bool === false;
}
console.log(booWho(null));
console.log(booWho(true));
console.log(booWho(false));
console.log(booWho([1, 2, 3]));
console.log(booWho([].slice));
console.log(booWho({ "a": 1 }));
console.log(booWho(1 ));
console.log(booWho(NaN));
console.log(booWho("a"));
console.log(booWho("true"));
console.log(booWho("false"));