반응형


사용자 정의해야 함.


Array.prototype.containsAll = function(otherArray) {

if(otherArray == null) return false;

if(this.length < otherArray.length) return false;

  

var origin = this;

return otherArray.every(function(otherVal) {

return origin.indexOf(otherVal) >= 0;

});

}


var a = new Array(1,2,3);

var b = new Array(5);


alert(a.containsAll(b));

 ==> false

반응형

'프로그래밍 > Javascript' 카테고리의 다른 글

undefined ?  (0) 2021.08.06
prototype  (0) 2018.12.20
[jquery] hide, show 함수, visibility 속성  (0) 2016.10.28
jquery crossdomain ajax jsonp  (1) 2015.10.30
한글, 영문 check  (0) 2011.12.27

+ Recent posts