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.clear()

Esta tradução está incompleta. Ajude atraduzir este artigo.

O método clear() remove todos os elementos de um objeto Set.

Sintaxe

mySet.clear();

Exemplos

Usando o método clear

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

mySet.size;       // 2
mySet.has("foo"); // true

mySet.clear();

mySet.size;       // 0
mySet.has("bar")  // false

Especificações

Especificações Status Comentário
ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'Set.prototype.clear' in that specification.
Standard Definições iniciais
ECMAScript 2017 Draft (ECMA-262)
The definition of 'Set.prototype.clear' in that specification.
Draft  

Compatibilidade de navegadores (Browser)

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 38 19.0 (19.0) 11 25 7.1
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support Não suportado 25 19.0 (19.0) Não suportado Não suportado 8

Veja também

Etiquetas do documento e colaboradores

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