Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
how to set the time to zero.
where I am using
startDate = '2021-01-01'
date1 = parseDate(startDate,"yyyy-MM-dd HH:mm:ss.SSS");
I want the the date1 to be date1 = 2021-01-01 00:00:00.000;
where I am getting it as '2021-01-01 10:00:00.000';
how can I make time as zero.
How about using Date.parse() method like below:
var startDate = '2021-01-01';
var result = Date.parse(startDate);