Hello! There is a two-dimensional matrix. I need to parse it into the table, but so that each table cell appears at 5 second intervals.
Here's what is at the moment:
document.write('<table>'); for(c = 0; c<dimension; c++){ document.write('<tr>'); for(r = 0; r<dimension; r++){ document.write('<td>'+ matrix[c][r] + '</td>'); } document.write('</tr>'); } document.write('</table>'); here I bring each element of the matrix into a separate cell. It turns out such a sign: 
Can you please tell me how to make each cell of the label appear with a delay?