Created
May 30, 2016 18:14
-
-
Save pengjunp/3d7f7e5a28dfda34228420dfecf612a1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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