Created
August 3, 2015 05:03
-
-
Save tim-br/6cb1bcf36e192be2bf75 to your computer and use it in GitHub Desktop.
This file contains hidden or 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){ | |
res = [] | |
for(i = 0; i <= x; i++){ | |
res.push(i); | |
} | |
return res; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment