JSFiddle - React, Tailwind, and code Playground
HTML
<table>
</table>
JavaScript
var data="client-ip 1.0.230.145 1.1.145.219 1.1.214.239 1.11.112.100 1.112.218.165 1.112.98.44 1.113.55.77 1.114.193.160 1.115.77.221 1.115.81.190 1.124.150.22 1.124.158.81";
var ips=data.split(' ');
var tableContent;
$.each(ips, function(key,value){
if(key==0)
return;
tableContent += '<tr>';
tableContent += '<td>' + value + '</td>';
tableContent += '</tr>';
});
$('table').html(tableContent);