Hola tengo una columna de tiempo en formato hh:mm:ss.mss
que quiero resumir y mostrar como una tabla en html
tambien esta la mesa
| Fecha | Tiempo |
|---|---|
| 03/02/1994 | 00:01:31:109 |
| 03/02/1994 | 00:01:31:109 |
| 03/03/1994 | 00:02:31:109 |
| 03/03/1994 | 00:02:31:109 |
Si alguien puede ayudar con la sintaxis, cómo mostrar la tabla 03/02/1994 - suma de ambos tiempos 03/03/1994 - suma de ambos tiempos
let table = document.querySelector(".table"); ( async() => { let workbook = XLSX.read(await (await fetch("./Book.xlsx")).arrayBuffer()); console.log(workbook); let worksheet = workbook.SheetNames; worksheet.forEach(name => { let html = XLSX.utils.sheet_to_html(workbook.Sheets[name]); table.innerHTML += ` <h3>${name}</h3>${html} `; }) } )() <table class="table"> </table>