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.
- Host: GitHub
- URL: https://github.com/rndbyte/fizz-buzz-task
- Owner: rndbyte
- Created: 2022-05-15T13:57:29.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-15T14:03:39.000Z (about 4 years ago)
- Last Synced: 2025-02-09T20:20:25.490Z (over 1 year ago)
- Language: JavaScript
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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.