Created
July 18, 2016 00:49
-
-
Save anonymous/6cf57ce4d1dc999ba573f2bb7aeeb6f5 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/wagazi
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"> | |
var x; | |
var x = 15; | |
if ((x % 3) == 0 && (x % 5) == 0) | |
console.log("FizzBuzz"); | |
else if (x % 3 == 0) | |
console.log("Fizz"); | |
else if (x % 5 == 0) | |
console.log("Buzz"); | |
else | |
console.log("x"); | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">var x; | |
var x = 15; | |
if ((x % 3) == 0 && (x % 5) == 0) | |
console.log("FizzBuzz"); | |
else if (x % 3 == 0) | |
console.log("Fizz"); | |
else if (x % 5 == 0) | |
console.log("Buzz"); | |
else | |
console.log("x"); | |
</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
var x; | |
var x = 15; | |
if ((x % 3) == 0 && (x % 5) == 0) | |
console.log("FizzBuzz"); | |
else if (x % 3 == 0) | |
console.log("Fizz"); | |
else if (x % 5 == 0) | |
console.log("Buzz"); | |
else | |
console.log("x"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment