- JS Introduction
- JS Introduction
- JS Comments
- JS Variables
- JS Datatypes
- JS Operators
- JS Type Conversions
- JS Control Flow
- JS Comparisons
- JS If else
- JS If else Ladder
- JS Ternary Operator
- JS Switch
- JS For Loop
- JS For In
- JS For Of
- JS While
- JS Do While
- JS Break & Continue
- JS Functions
- JS Function Declaration
- JS Function Parameters
- JS Return Statement
- JS Function Expressions
- JS Anonymous Functions
- JS Objects
- JS Objects
- JS Object Methods
- JS Object Constructors
- JS Object Destructuring
- JS Object Prototypes
- JS Map, Filter & Reduce
- JS ES6
- JS ES6
- JS let and const
- JS Arrow Functions
- JS Template Literals
- Destructuring Assignment
- JS Spread Operator
- JS Default Parameters
- JS Classes
- JS Inheritance
- JS Map
- JS Set
- JS Async
- JS Callbacks
- JS Asynchronous
- JS Promises
- JS Async/Await
- JS HTML DOM/BOM
- JS Document Object
- JS getElementbyId
- getElementsByClassName
- JS getElementsByName
- getElementsByTagName
- JS innerHTML
- JS outerHTML
- JS Window Object
- JS History Object
- JS Navigator Object
- JS Screen Object
JavaScript Set
Unique Values:
- Sets store unique values, meaning each value can occur only once within a set.
No Duplicate Values:
- When adding a value to a set that already exists, the set will not allow duplicates.
Example: Creating a Set
const mySet = new Set();
mySet.add(1);
mySet.add(2);
mySet.add(3);
mySet.add(1); // Duplicate value, will be ignored
Size:
- The size property returns the number of unique values in the set.
Example: Size
console.log(mySet.size); // Output: 3
Iterability:
- Sets are iterable, meaning you can use loop constructs like for...of to iterate over the values in the set.
Example: Iterating over a Set
for (let item of mySet) {
console.log(item);
}
Removing Values:
- Use the delete() method to remove a specific value from the set.
- Use the clear() method to remove all values from the set.
Example: Removing Values
mySet.delete(2); // Removes the value 2 from the set
mySet.clear(); // Clears all values from the set
Key Points
- JavaScript Set stores unique values of any data type.
- Sets provide efficient methods for adding, removing, and checking for the presence of values.
- They are commonly used for handling collections of unique values or eliminating duplicates from arrays.
- Sets are iterable, making them easy to work with in loop constructs and iterable methods.