Sets in ES6

Descrição

A-Level Javascript (ES6) Notas sobre Sets in ES6, criado por James Drummond em 17-06-2015.
James Drummond
Notas por James Drummond, atualizado more than 1 year ago
James Drummond
Criado por James Drummond mais de 9 anos atrás
1
0

Resumo de Recurso

Página 1

Every item in a set is guaranteed to be unique - an item will not be added to a set if it already exists.So you don't have to iterate every element of an array to see if it exists.var collection = new Set([1, 2, 3, 4, 5]);var newElements = [4, 8, 10]; for(var i = 0; i collection.add(newElements[i]);}

Useful methods and properties Set.prototype.size - size of the set Set.prototype.constructor() - Takes array or other iterable as argument Set.prototype.add(value) - add an item to the set Set.prototype.delete(value) - delete an item from the set Set.prototype.has(value) - see if an item exists in the set Set.prototype.clear() - remove all elements from the set Set.prototype.forEach() - Iterate over the items of a set in insertion order Set.prototype.entries() - Obtain an iterator to loop through the set's elements Set.prototype.values() - returns an iterator object containing the values of the elements of the set

Semelhante

Maps in ES6
James Drummond
Arrow functions
James Drummond
Quiz - Object Oriented Javascript
arunram.krish
Examen Fundamentos Basicos de Programación
Jose Valderrama0721
Test I. Introduction to web technologies
Angel Martínez Rodriguez
JavaScript Fundamentals
Andrew Watters
Front-End Web Development
Chanthy Ngin
Javascript - Quiz - Jan 2016
arunram.krish
OpenSource Programming
Faheem Ahmed
Javascript basics
James Drummond
jQuery Basics functions and method
Victor Bini