Created
September 4, 2017 03:25
-
-
Save antiperfectclub/11c6399d9e868a3f9e62303c4aa34b85 to your computer and use it in GitHub Desktop.
JS Fundamental - FizzBuzz: JS Bin// source http://jsbin.com/qimiwec
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <script id="jsbin-javascript"> | |
| for (i=1; i<=20; 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) | |
| } | |
| } | |
| </script> | |
| <script id="jsbin-source-javascript" type="text/javascript">for (i=1; i<=20; 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) | |
| } | |
| }</script></body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for (i=1; i<=20; 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) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment