Here you can find the source of containsObject(obj)
Array.prototype.containsObject = function (obj) { var contains = false; for (var i = 0; i < this.length; i++) { if (this[i] == obj) { contains = true;/*from w w w. ja v a 2s .c om*/ } } return contains; };
Array.prototype.containsObject = function(obj){ var i; for (i = 0; i < this.length; i++) { if (this[i] === obj) { return true; return false; }; ...
Array.prototype.containsObject=function(obj){ var haveObj=false; for(var i=0;i<this.length;i++){ if(this[i]==obj){ haveObj=true; break; return haveObj; ...
Array.prototype.containsObjectById = function (id) { for (var i = 0; i < this.length; i++) { if (this[i].id === id) { return true; return false; };