I'm working on a node/express/mongo application and have an issue with Javascript's date objects.
var myDate = new Date(2017, 11, 5, 8, 30, 00, 00);
console.log(myDate)
It appears it's setting the time to 4:30 pm instead of 8:30 am. I've tried every variation of this. What's going on here? Any help appreciated, thanks