javascript Date().getTime() is not a function

前端 未结 3 1745
独厮守ぢ
独厮守ぢ 2020-12-09 14:47

I\'m trying to compare some Dates in javascript.

For some reason, I\'m getting \"Tue May 01 2012 16:43:03 GMT+0900 (JST) has no method \'getTime\'\"

Of cours

3条回答
  •  無奈伤痛
    2020-12-09 15:13

    This will make 'now' as variable type as date:

    var now = new Date();
    

    This will get you time from 'now':

    new Date(now).getTime();
    

提交回复
热议问题