Skip to content

Latest commit

 

History

History
26 lines (26 loc) · 1.33 KB

bounty.md

File metadata and controls

26 lines (26 loc) · 1.33 KB

This is a list of Bounties being offered By The community Only 1 Winner Per Bounty First one Approved Wins BTC Only 1 Bounty every 24 hours.

Bounty #1

  • Fizz Buzz
  • Write a program that console logs the numbers
  • from 1 to n. But for multiples of three print
  • “fizz” instead of the number and for the multiples
  • of five prints “buzz”. For numbers which are multiples
  • of both three and five print “fizzbuzz”.
  • Example:
  • fizzBuzz(5);
  • console.log(1)
  • console.log(2)
  • console.log('fizz')
  • console.log(4)
  • console.log('buzz') */