-
Date object return incorrect dates Extendscript
I have this code:
var date = new Date();
var day=date.getDay() ;
var month = date.getMonth();
var year = date.getYear();
var curDate = day + "_" + month + "_" + year;But curDate is returning me this: “2_6_116”. Is a way to fix this?