Verwandte Empfehlungen: „Javascript-Video-Tutorial“
1. Array.isArray-Beurteilung
Verwendung: Array.isArray(arr)
Array.isArray(arr)
ES5中新增了Array.isArray
方法,IE8及以下不支持
Array.isArray()
用于确定传递的值是否是一个[Array], 返回布尔值 true;否则它返回 false。
let arr = []; console.log(Array.isArray(arr)); // true
// 下面的函数调用都返回 true Array.isArray([]); Array.isArray([1]); Array.isArray(new Array()); Array.isArray(new Array('a', 'b', 'c', 'd')) // 鲜为人知的事实:其实 Array.prototype 也是一个数组。 Array.isArray(Array.prototype);
用法:arr.constructor === Array
Object的每个实例都有构造函数 constructor
,用于保存着用于创建当前对象的函数
let arr = []; console.log(arr.constructor === Array); // true
用法:arr instanceof Array
instanceof
主要是用来判断某个实例是否属于某个对象
let arr = []; console.log(arr instanceof Array); // true
注:instanceof操作符的问题在于,它假定只有一个全局环境。如果网页中包含多个框架,那实际上就存在两个以上不同的全局执行环境,从而存在两个以上不同版本的Array构造函数。如果你从一个框架向另一个框架传入一个数组,那么传入的数组与在第二个框架中原生创建的数组分别具有各自不同的构造函数。(红宝书88页上的原话)
用法:Array.prototype.isPrototypeOf(arr)
Array.prototype
属性表示 Array 构造函数的原型
isPrototypeOf()
可以用于测试一个对象是否存在于另一个对象的原型链上。
let arr = []; console.log(Array.prototype.isPrototypeOf(arr)); // true
用法:Object.prototype.toString.call(arr) === '[object Array]'
Array继承自Object,JavaScript在Array.prototype
上重写了toString,toString.call(arr)
实际上是通过原型链调用了。
let arr = []; console.log(Object.prototype.toString.call(arr) === '[object Array]'); // true
用法:Array.prototype.isPrototypeOf(arr)
Array.prototype
Array.isArray
-Methode hinzugefügt, die von IE8 und niedriger nicht unterstützt wirdArray.isArray()
wird verwendet, um zu bestimmen, ob der übergebene Wert ein [Array] ist, und gibt ihn zurück ein boolescher Wert true; andernfalls wird false zurückgegeben. let arr = []; console.log(Array.prototype.isPrototypeOf(arr)); // true
// 基本类型 typeof 123; //number typeof "abc"; //string typeof true; //boolean typeof undefined; //undefined typeof null; //object var s = Symbol; typeof s; //symbol // 引用类型 typeof [1,2,3]; //object typeof {}; //object typeof function(){}; //function typeof Array; //function Array类型的构造函数 typeof Object; //function Object类型的构造函数 typeof Symbol; //function Symbol类型的构造函数 typeof Number; //function Number类型的构造函数 typeof String; //function String类型的构造函数 typeof Boolean; //function Boolean类型的构造函数
arr.constructor === Array
🎜🎜Jede Instanz von Object hat einen Konstruktor constructor
, der verwendet wird um die Funktion zu speichern, die zum Erstellen des aktuellen Objekts verwendet wurde Bestimmen Sie, ob eine Instanz zu einem Objekt gehört🎜rrreee🎜Hinweis: Das Problem mit dem Instanzenoperator besteht darin, dass er davon ausgeht, dass es nur eine globale Umgebung gibt. Wenn die Webseite mehrere Frames enthält, gibt es tatsächlich mehr als zwei verschiedene globale Ausführungsumgebungen und damit mehr als zwei verschiedene Versionen des Array-Konstruktors. Wenn Sie ein Array von einem Frame an einen anderen übergeben, hat das übergebene Array einen anderen Konstruktor als das Array, das nativ im zweiten Frame erstellt wurde. (Originalwörter auf Seite 88 des Little Red Book) 🎜🎜🎜🎜 4. isPrototypeOf-Beurteilung der Prototypenkette 🎜🎜🎜🎜🎜Verwendung: 🎜Array.prototype.isPrototypeOf(arr)
🎜🎜Array.prototype Das Attribut stellt den Prototyp des Array-Konstruktors dar. 🎜🎜isPrototypeOf()
kann verwendet werden, um zu testen, ob ein Objekt in der Prototypenkette eines anderen Objekts vorhanden ist. 5. Object.prototype.toString🎜🎜🎜🎜🎜Verwendung: 🎜Object.prototype.toString.call(arr) === '[object Array]'
🎜🎜Array-Vererbung Da Object überschreibt JavaScript toString auf Array.prototype
und toString.call(arr)
wird tatsächlich über die Prototypenkette aufgerufen. 🎜rrreee🎜🎜🎜6. isPrototypeOf🎜🎜🎜🎜🎜 Verwendung in der Array-Prototypkette: 🎜Array.prototype.isPrototypeOf(arr)
🎜🎜Array.prototype
Eigenschaftsdarstellung Der Prototyp des Array-Konstruktors🎜rrreee🎜🎜🎜Sehen Sie sich übrigens die Verwendung von typeof an:🎜🎜🎜🎜Für Referenztypen kann typeof nicht zur Beurteilung verwendet werden, da alle zurückgegebenen Objekte Objekte sind🎜rrreee🎜Weitere programmierbezogene Kenntnisse , besuchen Sie bitte:🎜 Programmieren lernen🎜! ! 🎜Das obige ist der detaillierte Inhalt von6 Möglichkeiten, um festzustellen, ob es sich in JS um ein Array handelt. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!