Answers for "how to return the first string of an array in javascript"

5

get first word of string js

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

Code answers related to "how to return the first string of an array in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language