How to extract the first letter from each word in a string with Node.js

2 Answers

0 votes
const s = 'node.js programming language';
  
let match_arr = s.match(/\b(\w)/g);             
let first_letters = match_arr.join(' ');         
 
console.log(first_letters);


 
/*
 
run:
 
n j p l
 
*/

 



answered Mar 18, 2024 by avibootz
0 votes
const s = 'node.js programming language';
  
const firstLetters = s
        .split(" ")
        .map(word => word[0])
        .join(" ");      
        
console.log(firstLetters);


 
/*
 
run:
 
n p l
 
*/

 



answered Mar 18, 2024 by avibootz
...