Skip to content

Instantly share code, notes, and snippets.

@charmainetham
Created May 31, 2016 12:05
Show Gist options
  • Save charmainetham/d5ee4b264d34afc44efc489b964933b2 to your computer and use it in GitHub Desktop.
Save charmainetham/d5ee4b264d34afc44efc489b964933b2 to your computer and use it in GitHub Desktop.
Array Of Light
function arrayOfLight(n){
var arr =[]
for(var i = 0; i <= n; i ++){
arr.push(i)
};
return arr
};
arrayOfLight(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment