Answers for "how to get the first letter from a word in javascript"

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 "how to get the first letter from a word in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language