How to check if specific index exists in array with Node.js

1 Answer

0 votes
const array = ["node.js", "php", "ruby", "c++"];

const index = 6;

if (array[index] !== undefined) {
  	console.log("index: " + index + " exists"); 
} else {
		console.log("index: " + index + " not exists"); 
}
  
   
   
   
/*
run:
         
index: 6 not exists
       
*/

 



answered Jul 10, 2022 by avibootz

Related questions

2 answers 171 views
2 answers 159 views
1 answer 149 views
1 answer 171 views
2 answers 1,151 views
1 answer 228 views
...