Skip to content

Instantly share code, notes, and snippets.

@erikpantzar
Created April 28, 2015 12:36
Show Gist options
  • Save erikpantzar/4a1eb2f3da05df9d01a6 to your computer and use it in GitHub Desktop.
Save erikpantzar/4a1eb2f3da05df9d01a6 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FBuzzz</title>
</head>
<body>
<script type="text/javascript">
for ( 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 );
}
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment