datatable row column

datatable row column

snc.a[s] contains title of TD. But I cant add each of title to each of 7th TD. BUT 7th TD always get value of last snc.a[s]

  

var newTable=$('#musteri_ara_table').DataTable({"bFilter" : false,"bLengthChange": false});

$.ajax({
   type:"POST",
   url:"myUrl",
   data:"myData",
   dataType:"json",
   success:function(snc){
        for(s=0;   s< snc.a.length;  s++){
           nod= newTable.row.add( [s+1,snc.a[s]]).draw();

           nod.rows(s).columns(6).nodes().flatten().to$().attr("title",s);
        }
  
   }