Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,151 questions

40,705 answers

573 users

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
...