ES6 Set and Map collections in Lightning web components

We know how to use Set and Map in Apex classes, in Javascript ES6 same features are introduced. Now let see how to use Set and Map collections in Lightning web components. These are very useful for handling data in client-side in LWC.

Set:

Same as in apex, Set can hold a list of unique values.
Now let's see what are methods it does supports.
 // Initilize a set
 var fruits = new Set();
 console.log(fruits); // op:Set{ }
 // add items to set
 // add method can add only one iteam at a time, Here i'm trying to add two items but it will take first item only
 fruits.add('apple','banana');
 console.log(fruits);// op: Set{'apple'}
 // add array of items to set
 // there is no specific method to add array of items to set. we have to add each one using loop
 var todayItems = ['banana', 'Cranberry'];
 todayItems.forEach(item => fruits.add(item));
 console.log(fruits); // op: Set{'apple', 'banana','Cranberry'}
 // check set size
 console.log(fruits.size); // op: 3
 // find item in Set
 console.log(fruits.has('apple')) // op: true
 // remove element from Set
 console.log(fruits.delete('apple')); // op: true
 console.log(fruits)// op: Set{'banana','Cranberry'}

 // Display Keys and values
 // set have only unique keys or values, so both the methos it will return same result
for(let fruit of fruits.keys()){
    console.log(fruit); // op: banana, cranberry
}
for(let fruit of fruits.values()){
    console.log(fruit); // op: banana, cranberry
}
// clear the items in set
fruits.clear();
console.log(fruits); // op: set { }

Map:

Same as in apex, Map contains Key Value Pair in Javascript.
Now let's see what are the methods it does supports.
 // Initilize a map
var fruitsMap = new Map();
// add items to map
fruitsMap.set(001,'apple');
fruitsMap.set(002,'banana');
console.log(fruitsMap); // op: Map {1 => 'apple', 2 => 'banana'}
// check map size
console.log(fruitsMap.size); // op: 2
//

COMMENTS

Name

Apex,6,Batch Apex,2,Chrome Add-on,1,Chrome browser,1,Coding Best Practices,2,CRM Basics,1,cURL,1,Database Query,1,Dataset,1,Dynamic Apex,3,Dynamic SOQL,1,Einstein Analytics,9,Future Apex,1,Git,1,Google Chrome,1,JS for LWC,6,Lightning Components,2,lightning Page,1,Lightning Web Components,13,Linux for Windows users,1,LWC,2,Queueable Apex,1,Redirect page,1,REGEX,1,REST API,1,Salesforce CRM,1,Salesforce Errors,1,Salesforce Interview Questions,13,Salesforce Lightning,1,Salesforce New Features,1,Salesforce Tasks,2,Schedule Apex,1,Test Class,1,Triggers,1,Visualforce Pages,3,Visualforce Pagination,2,VS Code,2,Wave Analytics,7,Winter Release Notes,1,workbench,1,
ltr
item
SWDC WORLD (Software Development Center Of The World) - is a Multi author and Multi Technology Blog: ES6 Set and Map collections in Lightning web components
ES6 Set and Map collections in Lightning web components
ES6 Set and Map collections in Lightning web components,
SWDC WORLD (Software Development Center Of The World) - is a Multi author and Multi Technology Blog
https://swdcworld.blogspot.com/2019/08/es6-set-and-map-collections-in.html
https://swdcworld.blogspot.com/
https://swdcworld.blogspot.com/
https://swdcworld.blogspot.com/2019/08/es6-set-and-map-collections-in.html
true
5370056087523941001
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy