Skip to content

Instantly share code, notes, and snippets.

@pengjunp
Created May 30, 2016 18:14
Show Gist options
  • Select an option

  • Save pengjunp/3d7f7e5a28dfda34228420dfecf612a1 to your computer and use it in GitHub Desktop.

Select an option

Save pengjunp/3d7f7e5a28dfda34228420dfecf612a1 to your computer and use it in GitHub Desktop.
function arrayOfLight(x) {
var arr = [];
for(var i = 0; i <= x; i++) {
arr[i] = i;
}
return arr;
}
console.log(arrayOfLight(5));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment