JS isArray 레코드

1384 단어 array
var isArray=Function.isArray||function(0){

    return typeof o === "object" &&

    Object.prototype.toString.call(0)==="[object Array]"  ;

}

클래스 그룹 대상, 예를 들어 {1: "ab", 2: "cd", 3: "ef"}
function isArrayLike(o){

  if(o && typeof o==="object" && isFinite(o.length) &&

     o.length>=0 &&

     o.length===Math.floor(o.length) &&

     o.length<4294967296)

     return true;

  else

     return false;

}

좋은 웹페이지 즐겨찾기