Skip to content

Instantly share code, notes, and snippets.

@jamesattard
Created April 7, 2018 06:11
Show Gist options
  • Save jamesattard/bd12b033c4a8bb16be406a9dd0b6d7b7 to your computer and use it in GitHub Desktop.
Save jamesattard/bd12b033c4a8bb16be406a9dd0b6d7b7 to your computer and use it in GitHub Desktop.
const counter = 5;
[...Array(counter)].forEach(
(_, i) => {
console.log(i);
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment