Skip to content

Instantly share code, notes, and snippets.

@sketchpunk
Last active December 19, 2022 23:05
Show Gist options
  • Save sketchpunk/33307c54a96166add626f81560ccf4d4 to your computer and use it in GitHub Desktop.
Save sketchpunk/33307c54a96166add626f81560ccf4d4 to your computer and use it in GitHub Desktop.
create array without an array
const num=2;
console.log( Array.from( {length:5}, (_,i,v=i+num )=>{
console.log( i, v );
return v;
} ));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment