Skip to content

Instantly share code, notes, and snippets.

@loujaybee
Created August 23, 2016 17:26
Show Gist options
  • Save loujaybee/359d10ccd76a210385fb6bcb42526f8a to your computer and use it in GitHub Desktop.
Save loujaybee/359d10ccd76a210385fb6bcb42526f8a to your computer and use it in GitHub Desktop.

$(document).ready(function(){ console.log("Ready!")

for(var i = 1; i<=100; i++){

if(i % 3 === 0 && i % 5 === 0){
$("body").append("<p> FizzBuzz</p>");
}

else if(i % 3 === 0){
	$("body").append("<p>Fizz</p>");
}

else if(i % 5 === 0){
	$("body").append("<p>Buzz</p>")
}

 else{
	$("body").append("<p>" + i + "</p>")
}

} })

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment