Contact: aviboots(AT)netvision.net.il
39,911 questions
51,843 answers
573 users
const arr = ['javascript', 'typescript', 'nodejs', 'python']; const s = 'c#'; if (!arr.includes(s)) { arr.push(s); } console.log(arr); /* run: [ 'javascript', 'typescript', 'nodejs', 'python', 'c#' ] */