Answers for "how to take a first letter of a word in javascript"

2

get first word of string js

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

js get first letter of string

var x = 'some string';
alert(x.charAt(0)); // alerts 's'
Posted by: Guest on July-19-2020
1

js get words first letter

var str = "Java Script Object Notation";
var matches = str.match(/\b(\w)/g); // ['J','S','O','N']
var acronym = matches.join(''); // JSON

console.log(acronym)
Posted by: Guest on April-12-2020
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 a first letter of a word in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language