Created
August 9, 2019 14:09
-
-
Save slykar/3f0af994d25c14395a1825039ee4e7a4 to your computer and use it in GitHub Desktop.
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
// do something 10 times | |
'.'.repeat(10).split('').forEach(dot => doSomething()); | |
// add 7 more `{}` to `rows` | |
const rows = [{}, {}]; | |
Array(7).fill({}).map(o => rows.push({})) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment