其他分享
首页 > 其他分享> > if else优化

if else优化

作者:互联网

 

 

 

 

1、if else

 

 2 、switch

 

 

 3、arr

 

function returnWeekday() {
  let string = "今天是星期";
  let date = new Date().getDay();
  // 使用数组
  let dateArr = ['天', '一', '二', '三', '四', '五', '六'];
  return string + dateArr[date]
}
console.log(returnWeekday())

标签:returnWeekday,else,dateArr,let,date,优化,string
来源: https://www.cnblogs.com/onceweb/p/12889294.html