Answers for "access first letter of word in array javascript"

2

get first word of string js

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

get first word in javascript

let string = "Hello World"

let firstWord = typeof string.split(" ")[0] !== 'undefined' ? string.split(" ")[0] : null;
Posted by: Guest on October-11-2021

Code answers related to "access first letter of word in array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language