테이블 출력하기
1.1 for을 이용하여 테이블을 출력하세요.
let table = "<table>";
for( let i = 0; i < 10; i ++){
table += "<tr>"
for(let j = 0; j < 10; j++){
table += "<td>♬</td>"
}
table += "</tr>"
}
table += "</table>";
document.write(table);