to convert date in this “Fri Mar 24 2017 00:00:00 GMT-0400 (Eastern Daylight Time)” format to”2017-03-24″ in suitescript

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.

Leave a comment

Your email address will not be published. Required fields are marked *