How to returns a character at a specified index from a string in TypeScript

2 Answers

0 votes
const s = "TypeScript, C, PHP, C#, C++";
    
console.log(s.charAt(0)); // firat char
console.log(s.charAt(8));
console.log(s.charAt(s.length - 1)); // last char
console.log(s.charAt(s.length - 2));
  
  
                     
/*
run:
   
"T"
"p" 
"+"
"+" 
    
*/

 



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

 



answered May 22, 2022 by avibootz
...