Answers for "style only the first word in a string in js"

5

get first word of string js

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

js sting first letter

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

Code answers related to "style only the first word in a string in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language