Answers for "get first letter of string from string in array javascript"

22

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
16

javascript get first character of string

var str="Hello Folks!"
var firstStringChar = str.charAt(0); //H
Posted by: Guest on August-01-2019
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 "get first letter of string from string in array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language