Boo who - JavaScript Solution & Walkthrough
10/16 Boo who
Check if a value is classified as a boolean primitive. Return true or false.
Boolean primitives are true and false.
function booWho(bool) {
return bool;
}
booWho(null);
Credit: FreeCodeCamp.org
Understanding the Challenge
We ar...
benjaminsemah.hashnode.dev2 min read