Добрый день! Подскажите пожалуйста, нужно при нажатие на кнопку что-б добавлялись новые ячейки в 1-й и во 2-й столбец. Гуглил как это сделать, увидел метод insertRow, попытался сделать, но ничего не добавляеться и не чистится input потом. Подскажите что не так делаю? Спасибо!
const table = document.querySelector('#table');
const tableRow = table.insertRow(0);
addBtn.addEventListener('click', () => {
let newCellName;
let newCellValue;
newCellName.innerText = nameInput.value;
newCellValue.innerText = valueInput.value;
newCellName = tableRow.insertCell(0);
table.appendChild(newCellName);
newCellValue = tableRow.insertCell(1);
table.appendChild(newCellValue);
nameInput.value = '';
valueInput.value = '';
});