Created
July 29, 2019 10:16
-
-
Save buroz/45a4e6414431d9188534a4adc81140b4 to your computer and use it in GitHub Desktop.
Routelike first tries
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
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