Created
January 12, 2016 22:12
-
-
Save jrmoran/3c12ad2ebf3033f611a6 to your computer and use it in GitHub Desktop.
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
/* | |
* Write a program that prints out the numbers 1 to 100 (inclusive). | |
* If the number is divisible by 3, print Crackle instead of the number. | |
* If it's divisible by 5, print Pop. If it's divisible by both 3 and 5, | |
* print CracklePop | |
* | |
* Jaime Moran | |
*/ | |
var cracklePop = function(i){ | |
var r = ''; | |
if(i % 3 === 0) r += 'Crackle'; | |
if(i % 5 === 0) r +='Pop'; | |
return r; | |
}; | |
for(var i=1; i<=100; i++){ | |
var str = cracklePop(i); | |
if(str !== ''){ | |
console.log(i + ": " + str); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment