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

18

trim first character in javascript

let str = 'Hello';
 
str = str.slice(1);
console.log(str);
 
/*
    Output: ello
*/
Posted by: Guest on July-06-2020
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

Code answers related to "how to target the first letter in a string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language