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,     … Continue reading 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 find the Days difference between the two Dates

When we need to find the days difference between two dates use the below-added code. Add the configuration module to the script The comparing date should be in the same format. Here if ‘todayDate’ is 30/05/2023, and the ‘referenceDate’ is 28/05/2023, then the ‘differenceInDays’ value will be ‘2’. If ‘todayDate’ is 28/05/2023, and the ‘referenceDate’… Continue reading To find the Days difference between the two Dates