Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
let st = new Set(); st.add(5); st.add(9); st.add(0); st.add(6); st.add(1); console.log(st); /* run: Set(5) { 5, 9, 0, 6, 1 } */