Skip to content

Instantly share code, notes, and snippets.

@Methuselah96
Last active February 25, 2019 14:39
Show Gist options
  • Save Methuselah96/4a57c443dc67ba21f3f6a9a3b6c2f6ad to your computer and use it in GitHub Desktop.
Save Methuselah96/4a57c443dc67ba21f3f6a9a3b6c2f6ad to your computer and use it in GitHub Desktop.
const array = [];
for (let x = 0; x < 35; x++) {
array[x] = [];
for (let y = 0; y < 23; y++) {
array[x].push({ key: { x: x, y: y }, name: "" });
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment