I'm creating a table with js
for (j = 0; j < usersConCaptura.length; j++) {
html += "<tr>";
let contador = 0;
html += "<td id=usersConCaptura[j].ID_U>" + usersConCaptura[j].ID_U + "</td>";
I need to put as id
the value of usersConCaptura[j]
but do not put it, how do I solve it?