function createCell(tr, value) {
let td = document.createElement('td');
td.textContent = value;
tr.appendChild(td);
if (value == 'удалить') {
td.classList.add('remove');
td.addEventListener('click', () => {
td.parentElement.remove();
recountTotal();
});
}
if(value == price.value){
td.id = 'price';
}
if(value == amount.value){
td.id = 'amount';
}
if (value == prise * amoynt) {
td.id = 'cost';
}
<html>
<head>
<meta charset="utf-8">
<title>kalckulate</title>
<link rel="stylesheet" href="">
<style>
* {
box-sizing: border-box;
}
#parent {
margin: 0 auto;
width: 500px;
}
#form {
display: flex;
margin-bottom: 15px;
width:500px;
}
#form input {
padding: 8px;
width: 120px;
margin: 2px;
}
h2 {
margin-bottom: 7px;
}
#table {
width: 100%;
margin-bottom: 10px;
}
#table td, #table th {
padding: 8px;
text-align: center;
border: 1px solid black;
}
.remove {
color: blue;
cursor: pointer;
text-decoration: underline;
}
.remove:hover {
text-decoration: none;
}
#result {
text-align: right;
margin-right: 10px;
}
</style>
<script src=""></script>
</head>
<body>
<div id="parent">
<div id="form">
<input id="name" placeholder="название">
<input id="price" placeholder="цена">
<input id="amount" placeholder="количество">
<input id="add" type="button" value="добавить">
</div>
<h2>Таблица продуктов:</h2>
<table id="table">
<tr>
<th>название</th>
<th>цена</th>
<th>кол-во</th>
<th>сумма</th>
<th>удалить</th>
</tr>
</table>
<div id="result">
общий итог: <span id="total">0</span>
</div>
</div>