前端知识点总结
Posted yazhng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端知识点总结相关的知识,希望对你有一定的参考价值。
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
以上是关于前端知识点总结的主要内容,如果未能解决你的问题,请参考以下文章