I'm working with a number of dates in Google Sheets, but it seems to always enter the date as a string.
sheet.getRange(3,11,sheet.getLastRow()-3, 1).setValue(Utilities.formatDate(new Date(), "UTC-5", "dd/MM/yyyy"));
is how I enter the date, but when I test it with
Logger.log(typeof extractedDate);
it tells me that its a string.
If I'm working with hundreds of dates, it seems to me that it would be a huge waste of time/resources to have to parse each date as a string each time and convert it.