Answers for "get first letter of each word in a string in javascript"

1

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
5

get first word of string js

let myStr = "Hello World"
let firstWord = myStr.split(" ")[0]
Posted by: Guest on March-14-2021

Code answers related to "get first letter of each word in a string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language