Here you can find the source of contains(obj)
/**/* w w w . jav a 2s .co m*/ * Returns true if array contains obj, false otherwise * @memberof module:ArrayFunctions * @param {object} obj Object to be checked * @returns {boolean} */ Array.prototype.contains = function(obj) { // TODO add object {} support var i = this.length; while (i--) { if (this[i] === obj) { return true; } } return false; };
Array.prototype.contains = function(obj) { var i = this.length; while (i--) { if (this[i] === obj) { return true; return false; }; ...
Array.prototype.contains = function(obj) { var i = this.length; while (i--) { if (this[i] == obj) { return true; return false;
'use strict'; Array.prototype.contains = function(obj) { var i = this.length; while (i--) { if (this[i] == obj) { return true; return false; ...
Array.prototype.contains = function(obj) { var i = this.length; while (i--) { if (this[i] === obj) { return true; return false;
Array.prototype.contains = function (obj) { return this.indexOf(obj) > -1; };
Array.prototype.contains = function(obj) { var index = this.length; while (index--) { if (this[index] == obj) { return true; return false; }; ...
'use strict'; const list = require('./list.json'); const items = []; const duplicates = []; Array.prototype.contains = function(obj) { let i = this.length; while (i--) { if (this[i] == obj) { return true; ...
Array.prototype.contains = function(obj) { let i = this.length; while (i--) { if (this[i] == obj) { return true; return false;
Array.prototype.contains = function(obj){ return this.indexOf(obj)>-1; };