JSFiddle - React, Tailwind, and code Playground
HTML
<table id="users" class="ui-widget ui-widget-content">
<thead>
<tr class="ui-widget-header ">
<th class="nom">Nom</th>
<th>Référence</th>
<th>Quantité</th>
</tr>
</thead>
<tbody>
<tr>
<td class="nom">Test1</td>
<td>test11</td>
<td>test111</td>
</tr>
<tr>
<td class="nom">test2</td>
<td>test222</td>
<td>test222</td>
</tr>
</tbody>
</table>
JavaScript
tabnom=[];
$(".nom:gt(0)").each(function(){
tabnom.push($(this).text());})
alert(tabnom)