获取系统时间
new Date()
打印系统时间
console.log(new Date()) //Mon Nov 21 2022 17:21:53 GMT+0800 (中国标准时间)
系统时间转换格式
console.log(new Date().toLocaleString()) //2022/11/21 17:21:53
获取系统当前是星期几
console.log(new Date().getDay()) //1
转换成大写的星期(日一二三四五六)
console.log('星期', '日一二三四五六'.charAt(new Date().getDay())) //星期一
完整显示年月日时分秒星期几
this.time = new Date().toLocaleString() + ' 星期' + '日一二三四五六'.charAt(new Date().getDay());
console.log(this.time) //2022/11/21 17:29:39 星期一
标签:转换,log,系统,console,获取,一二三四五,Date,new,21 From: https://www.cnblogs.com/zhang-DaChong/p/16912108.html