Contact: aviboots(AT)netvision.net.il
23,335 questions
30,538 answers
573 users
const arr = ['nodejs', 'python', 'c']; const st = new Set([arr, 'c++']); console.log(st.has(arr)); console.log([...st].join(' ')); /* run: true nodejs,python,c c++ */