Skip to content

Instantly share code, notes, and snippets.

@pr1ntr
Created April 12, 2016 04:10
Show Gist options
  • Save pr1ntr/b56d86f7c7d89ddc13162a3e60b005ef to your computer and use it in GitHub Desktop.
Save pr1ntr/b56d86f7c7d89ddc13162a3e60b005ef to your computer and use it in GitHub Desktop.
vector
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