Skip to content

Instantly share code, notes, and snippets.

@BruOp
Last active August 29, 2015 14:22
Show Gist options
  • Save BruOp/44c60f9039a8647e8621 to your computer and use it in GitHub Desktop.
Save BruOp/44c60f9039a8647e8621 to your computer and use it in GitHub Desktop.
arrayOfLight
function arrayOfLight(x) {
var arr = new Array(x+1)
for (var i = 0; i <= x; i++) {
arr[i] = i;
}
return arr;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment