标签:语法 知识点 总结 array bin reac return call 父类
1.arr forEach 和map的区别? forEach是改变的原来数组,没有返回值,map是不改变原数组,有return 返回值;
2. apply call bind的区别? obj.call(this,sum1,sum2); obj.apply(this,[sum1,sum2]) obj,bind(this)(sum1,sum2)
3.typeof instranceof 区别? typeof 检测null或者array 也是object instranceof 弥补了这个不足 并且 判断了一层继承关系中的父类;语法是 a instranceof array
标签:语法 知识点 总结 array bin reac return call 父类
原文地址:https://www.cnblogs.com/yazhng/p/9546731.html