DPrinceKumar / HacktoberFest2020-1

Open for all and will be accepted within 24 hrs. For contributing. Write program in any language,Make sure you write your name as well
89 stars 448 forks source link

Added FizzBizz.js #725

Open VamsiKrishna04 opened 3 years ago

VamsiKrishna04 commented 3 years ago

Given a positive integer A, return an array of strings with all the integers from 1 to N. But for multiples of 3 the array should have “Fizz” instead of the number. For the multiples of 5, the array should have “Buzz” instead of the number. For numbers which are multiple of 3 and 5 both, the array should have "FizzBuzz" instead of the number.