Created
July 25, 2016 16:59
-
-
Save Leejojo/5fb8e8723b97a3076653fad2c7a54bce to your computer and use it in GitHub Desktop.
arrayOfLights
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
function arrayOfLight(x) { | |
for (var i = 0; i <= x; i++){ | |
console.log(i) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment