item and value
This commit is contained in:
parent
0475f8357b
commit
35393dffe8
|
@ -190,9 +190,11 @@
|
|||
tableHTML += '</tr>';
|
||||
|
||||
data.forEach(item => {
|
||||
alert(item);
|
||||
tableHTML += `<tr><td>${item}</td>`;
|
||||
alert(tableHTML);
|
||||
Object.values(item).forEach(value => {
|
||||
alert(value);
|
||||
tableHTML += `<td>${value}</td>`;
|
||||
alert(tableHTML);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue