Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
const array = ["typescript", "php", "ruby", "c++"]; const index = 4; if (array[index] !== undefined) { console.log("index: " + index + " exists"); } else { console.log("index: " + index + " not exists"); } /* run: "index: 4 not exists" */