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 153 views
2 answers 147 views
1 answer 138 views
1 answer 153 views
2 answers 1,123 views
1 answer 215 views
...