hashset equivalent in javascript code example
Example 1: Sets can be used to store __________. in js
let my= new Set()
my.add(1)
my.add("qw")
Example 2: hashset in java
Let’s see java hashset example.
import java.util.HashSet;
public class HashSetExample
{
public static void main(String[] args)
{
HashSet<String> hs = new HashSet<>();
hs.add("Banana");
hs.add("Orange");
hs.add("Apple");
hs.add("Pineapple");
hs.add("Mango");
System.out.println(hs);
}
}