Skip to content

Instantly share code, notes, and snippets.

@shinobcrc
Created July 25, 2016 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shinobcrc/bfd2b6ce3ff663e0a9ac522b731bc7da to your computer and use it in GitHub Desktop.
Save shinobcrc/bfd2b6ce3ff663e0a9ac522b731bc7da to your computer and use it in GitHub Desktop.
Array of Light
function arrayOfLight(x) {
var array = [];
for (var i = 0; i <= x; i++) {
array.push(i);
}
return array
}
alert(arrayOfLight(20));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment