VS
Size: a a a
VS
倫岡
arrayValue.forEach(({ name, lastName, email }) => {
document.querySelector('#table').innerHTML += `
<tr>
<td>${name}</td>
<td>${lastName}</td>
<td>${email}</td>
</tr>
`
})
VS
Б
const fragment = new DocumentFragment()
arrayValue.forEach(({ name, lastName, email }) => {
fragment.appendChild(
`<tr>
<td>${name}</td>
<td>${lastName}</td>
<td>${email}</td>
</tr>`
)
})
document.querySelector('#table').appendChild(fragment)
t
Т
t
ᴇ
ᴇ
Т
ES
Т
IV
an
МО
МО
FY
RR