본문 바로가기

Algorithms

freeCodeCamp - 10. Boo who [Basic Algorithm Scripting]

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);