An open API service indexing awesome lists of open source software.

https://github.com/rndbyte/fizz-buzz-task

Interview assignment. Serves to test programming skills.
https://github.com/rndbyte/fizz-buzz-task

Last synced: 8 months ago
JSON representation

Interview assignment. Serves to test programming skills.

Awesome Lists containing this project

README

          

##Fizz Buzz task implementation in JavaScript

Write a program, that output numbers from 1 to 100.
Instead of numbers multiples of 3, program must output word "Fizz".
Instead of numbers multiples of 5, program must output word "Buzz".
If a number is multiples of 15, program must output "FizzBuzz".
We need to find a most beautiful and simple solution.