Answers for "get the first word of a string node js"

12

javascript get first character of string

var str="Hello Folks!"
var firstStringChar = str.charAt(0); //H
Posted by: Guest on August-01-2019
2

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 "get the first word of a string node js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language