📜  JavaScript程序显示日期和时间

📅  最后修改于: 2020-09-27 05:00:15             🧑  作者: Mango

在此示例中,您将学习编写一个显示日期和时间的JavaScript程序。

示例:显示日期和时间
// program to display the date and time
// get date and time
let date = new Date(2017, 2, 12, 9, 25, 30);

// get the date as a string
let n = date.toDateString();

// get the time as a string
let time = date.toLocaleTimeString();

// display date
console.log('Date: ' + n);

// display time
console.log('Time: ' + time);

输出

Date: Sun Mar 12 2017
Time: 9:25:30 AM

在上面的示例中, new Date()构造函数用于创建日期对象。它根据给定的参数给出日期和时间:

let date = new Date(2017, 2, 12, 9, 25, 30);
console.log(date); // Sun Mar 12 2017 09:25:30 GMT+0545 (+0545)

注意new Date()的六个数字分别指定年,月,日,小时,分钟,秒。另外,月份从0开始。因此,一月为0 ,十二月为11

toDateString()方法返回Date对象的日期部分。

toLocaleTimeString()方法返回Date对象的时间部分。