Skip to content

Instantly share code, notes, and snippets.

@gbrl
Created May 30, 2016 16:08
Show Gist options
  • Save gbrl/205efc31fa35ca697784f7428c3871ae to your computer and use it in GitHub Desktop.
Save gbrl/205efc31fa35ca697784f7428c3871ae to your computer and use it in GitHub Desktop.
function arrayOfLight(num){
var arr = new Array(num+1).fill(0);
return Object.keys(arr);
}
console.log(arrayOfLight(8));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment