Contact: aviboots(AT)netvision.net.il
41,692 questions
54,362 answers
573 users
const st = new Set(['typescript', 'javascript', 'node.js', 'php']); st.forEach((element) => { console.log(element); }); /* run: typescript javascript node.js php */
const st = new Set(['typescript', 'javascript', 'node.js', 'php']); for (const element of st) { console.log(element); } /* run: typescript javascript node.js php */