Open JingchaoZhao opened 5 years ago
instanceof 的内部机制是通过判断对象的原型链中是不是能找到类型的prototype。
只能用来判断对象类型,原始类型不可以。
isArray es5后才有,更低用toString来实现