Created
January 15, 2019 00:57
-
-
Save rosd89/a36bf4347fc0075a804e72326c7c476d to your computer and use it in GitHub Desktop.
내가 개발을 시작했던 방법 - 3
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
(_ => { | |
for (let i = 2; i < 10; i++) { | |
for (let j = 1; j < 10; j++) { | |
console.log(`${i} * ${j} = ${i * j}`); | |
} | |
console.log(''); | |
} | |
})(); |
Author
rosd89
commented
Jan 15, 2019
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment