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

来源:7-23 编程练习

四亖

2015-09-19 14:51

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

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

写回答 关注

1回答

  • 四亖
    2015-09-19 15:25:48

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

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题