在JavaScript中,可以使用第三方庫如Moment.js來格式化日期和時間。以下是一個使用Moment.js格式化日期和時間的示例:
// 導入Moment.js庫
const moment = require('moment');
// 獲取當前日期和時間
const now = moment();
// 格式化日期和時間
const formattedDateTime = now.format('YYYY-MM-DD hh:mm:ss');
console.log(formattedDateTime);
除了Moment.js,還有其他類似的日期時間庫可以用來格式化日期和時間,比如date-fns、Luxon等。根據自己的喜好和項目需求,可以選擇合適的庫來處理日期和時間的格式化。