first letter of word js code example
Example 1: get first word of string js
let myStr = "Hello World"
let firstWord = myStr.split(" ")[0]
Example 2: js get first letter of string
var x = 'some string';
alert(x.charAt(0)); // alerts 's'
let myStr = "Hello World"
let firstWord = myStr.split(" ")[0]
var x = 'some string';
alert(x.charAt(0)); // alerts 's'