“use strict”

变量

1、变量必须先声明在使用
2、不能随意删除已声明的变量

this指向

1、全局作用域中函数的this是 undefined
2、构造函数不加new调用,this是undefined
3、定时器下this指向window