function findCorrectDate(){
currentDate = new Date();
currentDay = currentDate.getDay();
currentMonth = currentDate.getMonth();
currentYear = currentDate.getFullYear();
Logger.log(currentMonth, currentDay, currentYear);
}
Can anyone explain why this code is returning the incorrect date? I'm completely stumped.