Nodejs Utililty Methods Array Contain

List of utility methods to do Array Contain

Description

The list of methods to do Array Contain are organized into topic(s).

Method

isContain(e)
Array.prototype.isContain = function(e) {
  return this.indexOf(e) != -1;