面试题答案
一键面试let date = new Date();
// 获取本地化的日期和时间字符串
let options = {
year: 'numeric',
month: 'long',
day: 'numeric',
weekday: 'long'
};
let formattedDate = date.toLocaleDateString('zh-CN', options);
console.log(formattedDate);
let date = new Date();
// 获取本地化的日期和时间字符串
let options = {
year: 'numeric',
month: 'long',
day: 'numeric',
weekday: 'long'
};
let formattedDate = date.toLocaleDateString('zh-CN', options);
console.log(formattedDate);