Datatables obtient toutes les lignes

var table = $('#example').DataTable(); 

table.rows().data().map((row) => {
  // each row is an array where each column is an element in the array
  // as a string
}
Chris PA