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

14

how to get the first character of a string in javascript

let str = 'John Wick'
let firstChar = str.charAt(0) 
console.log(firstChar); // "J"
Posted by: Guest on November-16-2020
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 a string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language