Olá, estou tentando criar uma tela que le usuario, cpf e rg e insire numa tabela, a cada nova td na tabela eu coloquei na função um checkbox. eu queria usar esse checkbox para excluir a linha da tabela. como poderia fazer isso?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Teste01</title>
</head>
<body>
<link rel="stylesheet" type="text/css" href="main.css" />
<script src="./main.js"></script>
<section>
<form>
<div>
<label for="nome">Nome:</label>
<input id="nome" name="nome" type="text" placeholder="Digite seu nome aqui" autofocus/>
</div>
<div>
<label for="cpf">CPF:</label>
<input id="cpf" name="cpf" type="number" placeholder="Digite seu CPF" />
</div>
<div>
<label for="rg">RG:</label>
<input id="rg" name="rg" type="number" placeholder="Digite seu RG" />
</div>
<button id="adicionarBotao" onclick="adicionarItem()" type="button">Adicionar</button>
<button id="editarBotao" onclick="" type="button">Editar</button>
</form>
</section>
<table>
<thead>
<tr>
<th>Selecionar</th>
<th>Nome</th>
<th>CPF</th>
<th>RG</th>
</tr>
</thead>
<tbody id="tabela">
</tbody>
</table>
</body>
</html>
function adicionarItem() {
var refNome = document.querySelector("#nome").value;
var refCpf = document.querySelector("#cpf").value;
var refRg = document.querySelector("#rg").value;
var usuarioTr = document.createElement("tr");
var input = document.createElement('input');
input.type = 'checkbox';
var nomeTd = document.createElement("td");
var cpfTd = document.createElement("td");
var rgTd = document.createElement("td");
nomeTd.textContent = refNome;
cpfTd.textContent = refCpf;
rgTd.textContent = refRg;
usuarioTr.appendChild(input);
usuarioTr.appendChild(nomeTd);
usuarioTr.appendChild(cpfTd);
usuarioTr.appendChild(rgTd);
var tabela = document.querySelector("#tabela");
tabela.appendChild(usuarioTr);
}