How to returns a character at a specified index from a string in Node.js

2 Answers

0 votes
const s = "NodeJS, C, PHP, C#, C++";
    
console.log(s.charAt(0)); // firat char
console.log(s.charAt(4));
console.log(s.charAt(s.length - 1)); // last char
console.log(s.charAt(s.length - 2));
  
  
  
/*
run:
   
N
J
+
+
    
*/

 



answered May 22, 2022 by avibootz
0 votes
const s = "NodeJS, C, PHP, C#, C++";
    
console.log(s[0]); // firat char
console.log(s[4]);
console.log(s[s.length - 1]); // // last char
console.log(s[s.length - 2]);           
  
  
  
/*
run:
   
N
J
+
+
   

 



answered May 22, 2022 by avibootz

Related questions

...