I am trying to create a new date
in javascript
.
I have year
, month
and day
. Following this tutorial, syntax for creating new date
should be:
new Date(year, month, day, hours, minutes, seconds, milliseconds)
and that is exactly what I am doing:
var d = new Date(2016, 12, 17, 0, 0, 0, 0);
This should be december 17th 2016, but in my console output I see:
Tue Jan 17 2017 00:00:00 GMT+0100 (Central Europe Standard Time)
What am I doing wrong?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…