js-mentorship-razvan / javascript

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

The falling speed of petals #359

Closed RazvanBugoi closed 2 years ago

RazvanBugoi commented 5 years ago

https://www.codewars.com/kata/the-falling-speed-of-petals/train/javascript

RazvanBugoi commented 2 years ago
function sakuraFall(v) {
  return v <= 0 ?  0 : 400 / Number(v)
}