im sending datetime from controller to a jquery function. I want to display this ("13.06.2021") format but i have "2020-11-29T00:00:00" like this
how can i convert it ?
function forexample()
{
  $.ajax({
  .......
   succes : function(data) {
       alert(data[i].mydate); //i want "13.06.2021" format
  }
})
}
 
    