Skip to content

Instantly share code, notes, and snippets.

@ronan-mch
Last active October 20, 2015 19:37
Show Gist options
  • Save ronan-mch/2462e7afb1d404ab2444 to your computer and use it in GitHub Desktop.
Save ronan-mch/2462e7afb1d404ab2444 to your computer and use it in GitHub Desktop.
Helping Sofia with javascript problems
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sofia's javascript playground</title>
<style>
h1 {
font-style: italic;
}
</style>
</head>
<body>
<h1>Hello</h1>
<script>
for(var i=1; i<21; i++){
if (i %3 == 0){
console.log ("Fizz");
}
else if (i %5 == 0){
console.log ("Buzz");
}
else if ((i %3 == 0) && (i %5 == 0)){
console.log ("FizzBuzz");
}
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