I want to create a multi-dimensional array like this using Lodash or vanilla JS:
[
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
[11, 12, 13, 14, 15, 16, 17, 18, 19, 20],
etc
]
This is a simplistic example since I want this pattern to continue up to 1,000,000 but for demonstration 1 to 20 is fine.
Any ideas? I've tried _.range(20)
so far but I need this Array to be multi-dimensional. Thanks