Answers for "how to take the first letter of every wordin string in javascript"

0

get the first word of a string javascript

let sentence = "The big brown fox"
let word = sentence.split(" ")[0]

console.log(word) // The
Posted by: Guest on January-15-2021
0

javascript get first letter of each word

var msg = "Name Surname a"
var acronym = msg.match(/\b(\w)/g).join('');

console.log(acronym)
Posted by: Guest on January-07-2021

Code answers related to "how to take the first letter of every wordin string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language