function initTableau() { const tbody = document.querySelector( '#table-facture' ).querySelector( 'tbody'); for ( let i = 0; i < activites.length; i++ ) { const ligne = tbody.insertRow(); // cellules activités let cellActivite = ligne.insertCell(); cellActivite.innerHTML = activites[ i ].titre; // cellules cotisations let cellCotisation = ligne.insertCell(); cellCotisation.innerHTML = activites[ i ].prix; // cellules choix let cellChoix = ligne.insertCell(); // cellules tarifs cellTarif = ligne.insertCell(); cellTarif.innerHTML = 0; } }