I'm trying to format some json dates in a table to a more readable format.  The string returned from the json looks like this "2015-06-29T10:00:00.000Z". 
The time is not important, I just want to show the date as dd/mm/yyyy.
I have tried using new date(detestring) but i might have got this wrong, as its not working.  Here is the full code.
$(document).ready( function() {
 $.getJSON( 'opp.php', function(data) { 
  $.each(data.opportunities, function() { 
   $("table#outtodaytomorrow").append("<tr><td>" + this.number + "</td><td>" + new Date(this.starts_at) + "</td></tr>");
});
});
});
Any help much appreciated.
 
     
     
     
    