我想知道这有什么作用。array.prototype.includes.call(x, y);我发现检查数组是否包含给定值并返回true或false。includes()我还发现将使用可选参数进行调用。call()this我的问题是,我不明白这里发生了什么,如果它像这里一样连接在一起。
1 回答
慕婉清6462132
TA贡献1804条经验 获得超2个赞
以下是解释(来自Mozilla Developer):
includes()方法有意泛型。它不需要此值是 Array 对象,因此它可以应用于其他类型的对象(例如,类似数组的对象)。
下面的示例阐释了在函数的参数对象上调用的方法。includes()
(function() {
console.log(Array.prototype.includes.call(arguments, 'a')) // true
console.log(Array.prototype.includes.call(arguments, 'd')) // false
})('a','b','c')
类似数组的对象与 (如属性) 有一些相似之处,但没有像 等函数。另一个类似数组的对象是 ,您可以从浏览器的控制台中获取它。您比较 vs 的结果,并看到 getter 和 setters 不同,但两者都提供 .ArraylengthmapsliceHTMLCollectiondocument.getElementsByTagName('div')document.getElementsByTagName('div').__proto__[].__protolength
添加回答
举报
0/150
提交
取消