Here you can find the source of containsObject(obj)
Array.prototype.containsObject = function(obj){ var i;/*from w w w.j a v a 2s . c om*/ for (i = 0; i < this.length; i++) { if (this[i] === obj) { return true; } } return false; };
Array.prototype.containsObject = function (obj) { var contains = false; for (var i = 0; i < this.length; i++) { if (this[i] == obj) { contains = true; return contains; }; ...
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; };