Básicamente, solo quiero agregar las imágenes de las piezas de ajedrez en la posición correcta a la que pertenecen, pero sin cambiar mucho el código.
//This is my Javascript code var numbers = new Array(10); function drawChessboard() { for (var row = 1; row <= 4; row++) { numbers[row-1] = new Array(10); document.write("<tr>"); for (var col = 1; col <=4; col++) { numbers [row-1][col-1] = row*col; document.write("<td class='dark'></td>"); document.write("<td class='light'></td>"); } document.write("<tr>"); for (var col = 1; col <=4; col++) { numbers [row-1][col-1] = row*col; document.write("<td class='light'></td>"); document.write("<td class='dark'></td>"); } document.write("</td>") }}