Skip to content

Instantly share code, notes, and snippets.

@brianbancroft
Created May 2, 2016 15:30
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 brianbancroft/7ce92ede12e6ef20e690765870f4f90f to your computer and use it in GitHub Desktop.
Save brianbancroft/7ce92ede12e6ef20e690765870f4f90f to your computer and use it in GitHub Desktop.
var myNum = 3;
function arrayOfLight(myNum){
var myArr = [];
for (i = 1; i <= myNum; i++) {
myArr.push(i);
}
return myArr;
}
console.log(arrayOfLight(myNum));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment