Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Array.prototype.contains()

This is an experimental technology, part of the Harmony (ECMAScript 7) proposal.
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future version of browsers as the spec changes.

Sumário

O método contains() determina se um array contém um determinado elemento, retornando true ou false apropriadamente.

Sintaxe

array.contains(searchElement[, fromIndex])

Parâmetros

searchElement
O elemento a buscar
fromIndex
Opcional. A posição no array de onde a busca pelo searchElement se iniciará. Por padrão, 0.

Exemplos

[1, 2, 3].contains(2);     // true
[1, 2, 3].contains(4);     // false
[1, 2, 3].contains(3, 3);  // false
[1, 2, 3].contains(3, -1); // true
[1, 2, NaN].contains(NaN); // true

Polyfill

if (![].contains) {
  Object.defineProperty(Array.prototype, 'contains', {
    enumerable: false,
    configurable: true,
    writable: true,
    value: function(searchElement/*, fromIndex*/) {
      if (this === undefined || this === null) {
        throw new TypeError('Cannot convert this value to object');
      }
      var O = Object(this);
      var len = parseInt(O.length) || 0;
      if (len === 0) { return false; }
      var n = parseInt(arguments[1]) || 0;
      if (n >= len) { return false; }
      var k;
      if (n >= 0) {
        k = n;
      } else {
        k = len + n;
        if (k < 0) k = 0;
      }
      while (k < len) {
        var currentElement = O[k];
        if (searchElement === currentElement ||
            searchElement !== searchElement && currentElement !== currentElement
        ) {
          return true;
        }
        k++;
      }
      return false;
    }
  });
}

Especificações

Proposta ES7: https://github.com/domenic/Array.prototype.contains/blob/master/spec.md

Comptibilidade

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support Não suportado Não suportado Não suportado Não suportado Não suportado
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support Não suportado Não suportado Não suportado Não suportado Não suportado Não suportado

Veja Também

Etiquetas do documento e colaboradores

 Colaboradores desta página: cirocosta
 Última atualização por: cirocosta,