🔥Limited Offer: Get 50% OFFon AI & Full Stack Courses🔥
Back to JavaScript Notes
Topic #71

JS Set Methods

Set Methods & Properties

Col 1 Col 2
new Set() add() clear() delete() entries() forEach() has() keys() values() size

The new Set() Method

Pass an array to the new Set() constructor:

Example

// Create a new Set

const letters = new Set(["a","b","c"]);

The add() Method

Example

letters.add("d");

letters.add("e");

If you add equal elements, only the first will be saved:

Example

letters.add("a");

letters.add("b");

letters.add("c");

letters.add("c");

letters.add("c");

letters.add("c");

letters.add("c");

letters.add("c");

Note: The primary feature of Set objects is that they only store unique values. If an attempt is made to add an element that already exists in the set, the add() method will have no effect, and the set will remain unchanged.


The size Property

Example

// Create a new Set

const mySet = new Set(["a","b","c"]);

// The number of elements are

mySet.size;

Listing Set Elements

You can list all Set elements (values) with a for..of loop:

Example

// Create a Set

const letters = new Set(["a","b","c"]);

// List all Elements

let text = "";

for (const x of letters) {

  text += x;

}

The has() Method

The has() method returns true if a specified value exists in a set.

Example

// Create a Set

const letters = new Set(["a","b","c"]);

// Does the Set contain "d"?

answer = letters.has("d");

The forEach() Method

The forEach() method invokes a function for each Set element:

Example

// Create a Set

const letters = new Set(["a","b","c"]);

// List all entries

let text = "";

letters.forEach (function(value) {

  text += value;

})

The values() Method

The values() method returns an Iterator object with the values in a Set:

Example 1

// Create a Set

const letters = new Set(["a","b","c"]);

// Get all Values

const myIterator = letters.values();

// List all Values

let text = "";

for (const entry of myIterator) {

  text += entry;

}

Example 2

// Create a Set

const letters = new Set(["a","b","c"]);

// List all Values

let text = "";

for (const entry of letters.values()) {

  text += entry;

}

The keys() Method

The keys() method returns an Iterator object with the values in a Set:

Note: A Set has no keys, so keys() returns the same as values(). This makes Sets compatible with Maps.

Example 1

// Create a Set

const letters = new Set(["a","b","c"]);

// Create an Iterator

const myIterator = letters.keys();

// List all Elements

let text = "";

for (const x of myIterator) {

  text += x;

}

Example 2

// Create a Set

const letters = new Set(["a","b","c"]);

// List all Elements

let text = "";

for (const x of letters.keys()) {

  text += x;

}

The entries() Method

The entries() method returns an Iterator with [value,value] pairs from a Set.

Note: The entries() method is supposed to return a [key,value] pair from an object. A Set has no keys, so the entries() method returns [value,value]. This makes Sets compatible with Maps.

Example 1

// Create a Set

const letters = new Set(["a","b","c"]);

// Get all Entries

const myIterator = letters.entries();

// List all Entries

let text = "";

for (const entry of myIterator) {

  text += entry;

}

Example 2

// Create a Set

const letters = new Set(["a","b","c"]);

// List all Entries

let text = "";

for (const entry of letters.entries()) {

  text += entry;

}

Note: Learn More: JavaScript Sets JavaScript Set Logic JavaScript Weak Sets JavaScript Set Reference JavaScript Maps

Want to go beyond the notes?

Join CodingNow 2.0's JavaScript course — live mentorship, real projects, and 100% placement support.

Enroll Now — Free Demo Available

JS Set Methods – FAQs

Quick answers about learning JS Set Methods in JavaScript.

This free note from CodingNow 2.0 explains JS Set Methods in JavaScript — concept, syntax and worked code examples you can copy, run and revise before interviews.
Yes. Every JavaScript topic on CodingNow 2.0, including JS Set Methods, is 100% free with no signup required.
With focused practice, most students grasp JS Set Methods in 1–3 days from these notes; pairing it with CodingNow 2.0's mentor-led course takes you to job-ready depth faster.
Use the code examples in this note, then ask doubts for free on the CodingNow 2.0 Community (/community) — expert instructors answer within 24 hours.
WhatsApp
Call NowEnroll Now