https://github.com/predetermined/fizzbuzz
https://github.com/predetermined/fizzbuzz
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/predetermined/fizzbuzz
- Owner: predetermined
- License: lgpl-2.1
- Created: 2020-08-30T15:02:09.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-02T08:00:28.000Z (over 5 years ago)
- Last Synced: 2025-10-11T18:48:46.803Z (9 months ago)
- Language: JavaScript
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My FizzBuzz solution
```javascript
for (let i = 1; i <= 100; i++) {
/*
Evaluates to either "Fizz", "Buzz" or an empty (falsy)
string
*/
console.log(((i % 5 === 0 ? "Fizz" : "") + (i % 3 === 0 ? "Buzz" : "")) || i);
}
```