Skip to content

Instantly share code, notes, and snippets.

@tim-br
Created August 3, 2015 05:03
Show Gist options
  • Save tim-br/6cb1bcf36e192be2bf75 to your computer and use it in GitHub Desktop.
Save tim-br/6cb1bcf36e192be2bf75 to your computer and use it in GitHub Desktop.
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