Skip to content

Instantly share code, notes, and snippets.

@buroz
Created July 29, 2019 10:16
Show Gist options
  • Save buroz/45a4e6414431d9188534a4adc81140b4 to your computer and use it in GitHub Desktop.
Save buroz/45a4e6414431d9188534a4adc81140b4 to your computer and use it in GitHub Desktop.
Routelike first tries
let area = [];
for (let i = 0; i < 6; i++) {
area[i] = new Array(6);
}
for (let j = 0; j < 6; j++) {
for (let l = 0; l < 6; l++) {
area[j][l] = "@";
}
}
console.log(area);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment