Date()


JavaScript Date()方法返回今天的日期和时间,不需要调用任何对象。

语法

Date()

返回值

返回今天的日期和时间。

var dt = Date();
console.log("Current Date ",dt);

输出

Current Date Tue Sep 20 2016 22:24:31 GMT+0530 (India Standard Time)