Boo who
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-algorithm-scripting/boo-who
www.freecodecamp.org
function booWho(bool) {
if(typeof bool == 'boolean') return true
return false
}
booWho(null);
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-algorithm-scripting/boo-who
www.freecodecamp.org
function booWho(bool) {
if(typeof bool == 'boolean') return true
return false
}
booWho(null);