Skip to content

Instantly share code, notes, and snippets.

@kaiguogit
Last active August 22, 2016 18:48
Show Gist options
  • Select an option

  • Save kaiguogit/5f1b7cd2bd5aa66c13296ad725ceb090 to your computer and use it in GitHub Desktop.

Select an option

Save kaiguogit/5f1b7cd2bd5aa66c13296ad725ceb090 to your computer and use it in GitHub Desktop.
w6-d1-arrayoflight
function arrayOfLight(number){
var a = [];
for(i=0; i<=number; i++){
a.push(i);
}
return a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment