为了账号安全,请及时绑定邮箱和手机立即绑定

(currentDate.getMonth() + 1) + "月" why?

  var currentDate = new Date();
  var weekday = ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"];
  document.write(
      currentDate.getFullYear() + "年" + 
      (currentDate.getMonth() + 1) + "月" + 
      currentDate.getDate() + "日" + " " + 
      weekday[currentDate.getDay()]
      );

为什么(currentDate.getMonth() + 1) + "月" 这句要加括号才可以呢,而且我试了一下在外面单独写可以,为啥呢

正在回答

1 回答

知道了。因为加括号月份可以加1

1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

(currentDate.getMonth() + 1) + "月" why?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信