Skip to content

Instantly share code, notes, and snippets.

@terrancebryant
Created November 18, 2013 19:08
Show Gist options
  • Save terrancebryant/7533487 to your computer and use it in GitHub Desktop.
Save terrancebryant/7533487 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="fizzbuzz" />
<script src="http://code.jquery.com/jquery-latest.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
</body>
</html>
for ( i=1; i <= 100; i++ ) {
if (i%3 === 0 && i%5 ===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