ES2015(以下简称ES6)在开发过程中遇到的问题: 1,必须显示声明变量 //es5中可解释为全局变量 a=5; //es6中报错:a is not defined a=5 2,对于递归调用方式必须采用显式调用 //es5,匿名函数自调用 function(){ arguments.callee(); } //es6,报错 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode fun…