Last active
August 22, 2016 18:48
-
-
Save kaiguogit/5f1b7cd2bd5aa66c13296ad725ceb090 to your computer and use it in GitHub Desktop.
w6-d1-arrayoflight
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(number){ | |
| var a = []; | |
| for(i=0; i<=number; i++){ | |
| a.push(i); | |
| } | |
| return a; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment