Nodejs Array Include includes(searchElement)

Here you can find the source of includes(searchElement)

Method Source Code

Array.prototype.includes = function(searchElement) {  
    var O = Object(this);
    var len = parseInt(O.length) || 0;
    if (len === 0) {
      return false;
    }/*w w w .j a v  a  2 s  .c o  m*/
    var n = parseInt(arguments[1]) || 0;
    var k;
    if (n >= 0) {
      k = n;
    } else {
      k = len + n;
      if (k < 0) {k = 0;}
    }
    var currentElement;
    while (k < len) {
      currentElement = O[k];
      if (searchElement === currentElement ||
         (searchElement !== searchElement && currentElement !== currentElement)) {
         return true;
       }
       k++;
   }
return false;
};

Related

  1. includes(matcher)
    Array.prototype.includes = function(matcher) {
      var includes = false
        , arr = this;
      for( var j = 0, str; str = arr[j++]; ) {
        if( typeof str === "string" && str.includes(matcher) ) {
          includes = true;
      return includes;
    ...
    
  2. includes(s)
    Array.prototype.includes = function(s) {
        return this.indexOf(s) > -1;
    };
    
  3. includes(searchElement /*, fromIndex*/ )
    Array.prototype.includes = Array.prototype.includes || (function(searchElement  ) {
      var O = Object(this);
      var len = parseInt(O.length, 10) || 0;
      if (len === 0) return false;
      var n = parseInt(arguments[1], 10) || 0;
      var k;
      if (n >= 0) {
        k = n;
      } else {
    ...
    
  4. includes(searchElement /*, fromIndex*/ )
    if (![].includes) {
      Array.prototype.includes = function(searchElement  ) {
        if (this === undefined || this === null) {
          throw new TypeError('Cannot convert this value to object');
        var O = Object(this);
        var len = parseInt(O.length, 10) || 0;
        if (len === 0) {
          return false;
    ...
    
  5. includes(searchElement /*, fromIndex*/)
    if (!Array.prototype.includes) {
      Array.prototype.includes = function(searchElement ) {
        'use strict';
        if (this == null) {
          throw new TypeError('Array.prototype.includes called on null or undefined');
        var O = Object(this);
        var len = parseInt(O.length, 10) || 0;
        if (len === 0) {
    ...
    
  6. includes(target)
    Array.prototype.includes = function (target) {
      var result = false
      this.forEach(function (el) {
        if (el == target) {
          result = true
      });
      return result;
    
  7. includes(target)
    Array.prototype.includes = function(target) {
      for(var i in this) {
        if(this[i] === target) {
          return true;
        };
      };
      return false;
    };
    
  8. includes(val)
    Array.prototype.includes = function (val) {
      var returnValue = false;
      this.forEach(function (el, i){
        if (val === el) {
          returnValue = true;
      });
      return returnValue;
    };
    ...
    
  9. includes(val)
    var bubbleSort = function (arr) {
      var notSorted = true
      while (notSorted) {
        notSorted = false;
        for (var i = 0; i <= arr.length-2; i++) {
          var j = i+1;
          if (arr[j] < arr[i]) {
            var temp = arr[j];
            arr[j] = arr[i];
    ...