add elements to set code example
Example 1: add element in set python
thisset = {"apple", "banana", "cherry"}
thisset.add("orange")
print(thisset)
Example 2: add to set js
const mySet = new Set();
mySet.add(15);
mySet.add(33);
mySet.add(15);
for(let item of mySet) {
console.log(item)
// expected output: 15
// expected output: 33
}