DataTable Strating padrão
$(document).ready(function() {
$('#example').DataTable( {
"order": [[ 3, "desc" ]]
} );
} );
Clean Cod
$(document).ready(function() {
$('#example').DataTable( {
"order": [[ 3, "desc" ]]
} );
} );
Javascript12345$(document).ready(function() { $('#example').DataTable( { order: [[ 3, 'desc' ], [ 0, 'asc' ]] } );} );