小知识点

1.变量未声明就使用

var a1=111;
console.log(a1);
console.log(a2);
console.log(a3);
var a2=222;
a3=333;

111 undefined 出错

2.创建日期对象没有兼容问题的

  • new Date(year, month, day, hour, minute, sec, millsec)
  • new Date(millsec)(millsec为距1970年1月1 日至今的毫秒数)

你可能感兴趣的:(小知识点)