js-mentorship-razvan / javascript

Javascript study notes
GNU General Public License v3.0
22 stars 2 forks source link

Solve 'Keep up the hoop' #292

Closed odv closed 5 years ago

odv commented 5 years ago

https://www.codewars.com/kata/keep-up-the-hoop/train/javascript

RazvanBugoi commented 5 years ago
function hoopCount (n) {
  return n >= 10 ? "Great, now move on to tricks" : "Keep at it until you get it"; 
}