为什么以下代码导致minDate的时间为零毫秒?
maxDate = new Date(2013,0,1,0,0,1,200);
minDate = new Date(maxDate.getTime());
如果有所作为,我会在Chrome中查看此内容吗?
答案 0 :(得分:3)
minDate
毫秒不为零。毫秒位于maxDate
,并进入minDate
:
maxDate = new Date(2013,0,1,0,0,1,200);
console.log(maxDate.getMilliseconds());
minDate = new Date(maxDate.getTime());
console.log(minDate.getMilliseconds());
输出:
200
200