摘要:
getTime(diff) { var nowdate = new Date() if (diff) { nowdate.setDate(nowdate.getDate() + diff) } var year = nowdate.getFullYear() var month = nowdate. 阅读全文
摘要:
const a = a || {}这句话的意思是:如果 a 具有真值(不是undefined,null,NAN,false,0中的任意一 种) ,则这个a可以被使用 。 否则将 a 定义为一个空的object对象 {} 这样做的目的是,如果a没有被定义,在下面的代码里如果使用到变量a,浏览器将会抛出 阅读全文