Skip to content

Instantly share code, notes, and snippets.

@airbr
Forked from anonymous/index.html
Created July 18, 2016 00:49
Show Gist options
  • Save airbr/9b5347ad105bbffdc124970db9e2c66a to your computer and use it in GitHub Desktop.
Save airbr/9b5347ad105bbffdc124970db9e2c66a to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/wagazi
<!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>
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