JavaScript里FormatDateTime替代品

小樊
83
2024-07-02 21:53:13
欄目: 編程語言

在JavaScript中,可以使用第三方庫如Moment.js來格式化日期和時(shí)間。以下是一個(gè)使用Moment.js格式化日期和時(shí)間的示例:

// 導(dǎo)入Moment.js庫
const moment = require('moment');

// 獲取當(dāng)前日期和時(shí)間
const now = moment();

// 格式化日期和時(shí)間
const formattedDateTime = now.format('YYYY-MM-DD hh:mm:ss');

console.log(formattedDateTime);

除了Moment.js,還有其他類似的日期時(shí)間庫可以用來格式化日期和時(shí)間,比如date-fns、Luxon等。根據(jù)自己的喜好和項(xiàng)目需求,可以選擇合適的庫來處理日期和時(shí)間的格式化。

0