Answers for "find first word javascript"

0

get the first word of a string javascript

let sentence = "The big brown fox"
let word = sentence.split(" ")[0]

console.log(word) // The
Posted by: Guest on January-15-2021

Code answers related to "find first word javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language