time zone = UTC is set, and then just add the function to the controller by passing the date -
function dateToString (date){
var d = new Date(date),
month = '' + (d.getMonth() + 1),
day = '' + d.getDate(),
year = d.getFullYear();
if (month.length < 2) month = '0' + month;
if (day.length < 2) day = '0' + day;
return [year, month, day].join('-');
}
he will return the date.
it worked for me :)
source
share