Today I just found that if I add 1 month on today's date, it returns 1/7.
Can anyone give help on this? Thank you very much.
Notice: I didn't assign the date to today
because today is 31/5, and some of you guys is still on 30/5
var today = new Date(); // today is 31/5 in my timezone
console.log(today);
today.setMonth(today.getMonth() + 1);
console.log(today);