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.

Set.prototype.has()

This is a new technology, part of the ECMAScript 2015 (ES6) standard.
This technology's specification has been finalized, but check the compatibility table for usage and implementation status in various browsers.

El mètode has() retorna un booleà que indica si l'element amb el valor especificat existeix o no dins l'objecte Set.

Sintaxi

mySet.has(valor);

Paràmetres

valor
Obligatori. El valor a comprovar si pertany o no a l'objecte Set.

Valor retornat

Booleà
Retorna true si existex un element amb el valor especificat dins l'objecte Set; en cas contrari retorna false.

Exemples

Utilitzar el mètode has

var mySet = new Set();
mySet.add("foo");

mySet.has("foo");  // retorna true
mySet.has("bar");  // retorna false

Especificacions

Especificació Estat Comentaris
ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'Set.prototype.has' in that specification.
Standard Definició inicial.

Compatibilitat amb navegadors

Característica Chrome Firefox (Gecko) Internet Explorer Opera Safari
Suport bàsic 38 13.0 (13.0) 11 25 7.1
Característica Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Suport bàsic Not supported 38 13.0 (13.0) Not supported Not supported 8

Vegeu també

Document Tags and Contributors

 Contributors to this page: enTropy
 Last updated by: enTropy,