Here I am trying to convert a date to UTC and then converting same UTC date as new date. but the issue is that I am not getting same date which I passed. here is my fiddle
Here I am passing Date 11/2/2015 ie 2 November 2015, then converting it to UTC format, then UTC to normal date using new Date but now it is returning me 11/1/2015 ie 1 November 2015.
Thanks in advance.
var myDate = '11/2/2015';
var myDateObj = new Date(myDate);
console.log('my Date is \n' + myDateObj);
var tempDate = Date.UTC(myDateObj.getFullYear(),myDateObj.getMonth(),myDateObj.getDay());
var utcDate = new Date(tempDate);
console.log('my Date after utc \n' + utcDate);
The
getDay()
method does not return the day of the month see more at js Date.getDay() so instead of that you need to pass the day of the month which you can get bygetDate()
see more at getDate()