to convert date in this format “Fri Mar 24 2017 00:00:00 GMT-0400” to “2017-03-24” add module N/format. then use the method format.
Eg:
if(datedonated)
{
let lastDonation = new Date (datedonated);
let formattedDate = format.format({ value: lastDonation,
type: format.Type.DATE
});
here datedonated is the some user inputed date value.