for (let i = 1; i < 10; i++) { for (let j = 1; j < 10; j++) { let result = i * j; console.log(i + " * " + j + " = " + result); } }
이중 for문으로 구구단 만들기!