Algorithms
freeCodeCamp - 10. Boo who [Basic Algorithm Scripting]
euuuuuz:
2023. 1. 26. 00:45
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);