
let temp_html = '<tr>
<td>${name}</td>
<td>${address}</td>
<td>${size}</td>
</tr>'
$('#order-box').append(temp_html)
'<tr> </tr>' 이렇게 닫았는데
왜 오류 문구로 닫히지 않은 문자열 리터럴 이라고 뜬는건가요?

