Created
April 7, 2018 06:11
-
-
Save jamesattard/bd12b033c4a8bb16be406a9dd0b6d7b7 to your computer and use it in GitHub Desktop.
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
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