Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
const arr = ['c', 'typescript', , , null, '', 'c++', false]; if (arr.indexOf(undefined) === -1 && arr.includes(undefined)) { console.log('yes'); } else { console.log("no"); } /* run: "yes" */
const arr = ['c', 'typescript', , , '', 'c++', undefined]; if (arr.indexOf(undefined) === -1 && arr.includes(undefined)) { console.log('yes'); } else { console.log("no"); } console.log(arr.includes(undefined)); /* run: "no" true */