By using this code I can loop thru all DataTable rows and show the row values:
var table = $('#Example').DataTable();
table.rows().every(function(){
    console.log(this.data());
});
But how can I get the value only from cell 3 on each row?
By using this code I can loop thru all DataTable rows and show the row values:
var table = $('#Example').DataTable();
table.rows().every(function(){
    console.log(this.data());
});
But how can I get the value only from cell 3 on each row?
Use columns().data()
let table = $('#example').DataTable();
let values = table.columns(2) // DataTables is zero-based
                    .data()  
                    .eq(0);  // Convert to 2D array
console.log(values);