관련 권장 사항: "javascript 비디오 튜토리얼"
1. Array.isArray 판단
사용법: 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
메서드 추가Array.isArray()
는 전달된 값이 [Array]인지 확인하고 반환하는 데 사용됩니다. 부울 값 true ; 그렇지 않으면 false를 반환합니다. 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
🎜🎜Object의 모든 인스턴스에는 constructor
생성자가 있습니다. 현재 객체를 생성하는 데 사용된 함수를 저장합니다 🎜rrreee🎜🎜🎜 3. instanceof 판단 🎜🎜🎜🎜🎜 사용법: 🎜arr instanceof Array
🎜🎜instanceof
주로 사용되는 용도 인스턴스가 객체에 속하는지 확인🎜rrreee🎜참고: instanceof 연산자의 문제점은 전역 환경이 하나만 있다고 가정한다는 것입니다. 웹 페이지에 여러 프레임이 포함된 경우 실제로는 두 개 이상의 서로 다른 전역 실행 환경이 있으므로 Array 생성자의 서로 다른 버전도 두 개 이상 있습니다. 한 프레임에서 다른 프레임으로 배열을 전달하는 경우 전달하는 배열은 두 번째 프레임에서 기본적으로 생성된 배열과 다른 생성자를 갖게 됩니다. (원문은 Little Red Book 88페이지에 있음) 🎜🎜🎜🎜 4. isPrototypeOf 프로토타입 체인에 대한 판단 🎜🎜🎜🎜🎜Usage: 🎜Array.prototype.isPrototypeOf(arr)
🎜🎜Array.prototype 이 속성은 Array 생성자의 프로토타입을 나타냅니다. 🎜🎜isPrototypeOf()
를 사용하면 해당 개체가 다른 개체의 프로토타입 체인에 존재하는지 여부를 테스트할 수 있습니다. 🎜rrreee🎜🎜🎜5. Object.prototype.toString🎜🎜🎜🎜🎜사용법: 🎜Object.prototype.toString.call(arr) === '[객체 배열]'
🎜🎜배열 상속 Object 이후 JavaScript는 Array.prototype
에서 toString을 재정의하고 toString.call(arr)
은 실제로 프로토타입 체인을 통해 호출됩니다. 🎜rrreee🎜🎜🎜6. isPrototypeOf🎜🎜🎜🎜🎜 배열 프로토타입 체인에서의 사용법: 🎜Array.prototype.isPrototypeOf(arr)
🎜🎜Array.prototype
속성 표현 배열 생성자의 프로토타입🎜rrreee🎜🎜🎜그런데 typeof의 사용법을 검토하세요.🎜🎜🎜🎜참조 유형의 경우 반환된 모든 항목이 객체이므로 typeof를 사용하여 판단할 수 없습니다.🎜rrreee🎜더 많은 프로그래밍 관련 지식을 보려면 , 방문해주세요:🎜 프로그래밍 배우기🎜! ! 🎜위 내용은 JS에서 배열인지 확인하는 6가지 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!