Last active
October 20, 2015 19:37
-
-
Save ronan-mch/2462e7afb1d404ab2444 to your computer and use it in GitHub Desktop.
Helping Sofia with javascript problems
This file contains 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 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