Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| #!/usr/bin/env bash | |
| # Usage: {script} [ OPTIONS ] TARGET VERSION | |
| # | |
| # TARGET Default target is "/usr/local". | |
| # VERSION If not defined tries to get the build into the Sublime Text 2 website. | |
| # | |
| # OPTIONS | |
| # | |
| # -h, --help Displays this help message. | |
| # |
| for (var i=1; i <= 100; i++) | |
| { | |
| if (i % 15 === 0) | |
| console.log("FizzBuzz"); | |
| else if (i % 3 === 0) | |
| console.log("Fizz"); | |
| else if (i % 5 === 0) | |
| console.log("Buzz"); | |
| else | |
| console.log(i); |