I am using jquery plugin DataTables for building nice table
var table = $(\'#example\').DataTable({ \"data\": source });
I finally found:
var data = table.rows().data(); data.each(function (value, index) { console.log(`For index ${index}, data value is ${value}`); });