前端面经汇总JS协议不同版本Promise
前端面经汇总JSnull和undefined的区别JSnull和undefined的区别1.undefined 1.1 声明没有赋值,没有声明直接用,均为undefined 1.2 typeof undefined = undefined 1.3 转为数值为NaN2.null 2.1 typeof null = object 2.2 转为数值为0 2.3 作为函数的参数,表示该函数的参数不是对象;作为对象原型链的终点...