js 배열 판단 배열 의 6 대 방법

597 단어 js
var arr = [];
1、       arr     
Array.isArray(arr);

2、       Array      arr     
Array.prototype.isPrototypeOf(arr);
3、   arr       (     )          
arr.constructor === Array;

4、   arr        Array      
              instanceof,  instanceof   iframe          
arr instanceof Array;
5、   arr            Array          
Object.getPrototypeOf(arr) === Array.prototype;

6、      arr                   '[Object Array]'
Object.prototype.toString.call(arr) === '[Object Array]';

좋은 웹페이지 즐겨찾기