实践绕过instanceof Array的发现

前端之家收集整理的这篇文章主要介绍了实践绕过instanceof Array的发现前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

由于instanceof是检测原型链,我们可以这样:

function Person() {

}

Person.prototype = Array.prototype

var a = new Person

a instanceof Array // true

那么这个a有什么特点,我们和标准的array做个对比:

var b = []

a[1] = 1
b[1] = 1

a // []
b // [undefined × 1,1]

a.push(1)
b.push(1)

a // [1]
b // [undefined × 1,1,1]

a['3'] = 1
b['3'] = 1

a // [1]
a['3'] // 1
b // [undefined × 1,1]

当使用数组的方法的时候,表现的和数组一样,但是无法使用数字下标。字符串内容为数字时,表现的也和数组不一样。

原文链接:https://www.f2er.com/note/422542.html

猜你在找的程序笔记相关文章