JSFiddle - React, Tailwind, and code Playground
HTML
<table id="tableLancamentosConciliados">
<thead>
<th>A</th>
<th>B</th>
<th>C</th>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
<tr>
<td>7</td>
<td>8</td>
<td>9</td>
</tr>
</tbody>
</table>
JavaScript
$('#tableLancamentosConciliados> tbody > tr').each(function(indice, linha)
{
alert(indice);
//as colunas em HTML
var colunas = linha.innerHTML;
alert(colunas);
//Aqui abaixo, pode até fazer um outro "for" se quiser pegar os valores das colunas individualmente
});