Created
April 12, 2016 04:10
-
-
Save pr1ntr/b56d86f7c7d89ddc13162a3e60b005ef to your computer and use it in GitHub Desktop.
vector
This file contains 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 vector(n) { | |
let arr = Array.apply(null, Array(n)); | |
return arr.map((x, i) => i); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment