Answers for "only take first chars of string js"

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
3

get first 10 characters of string javascript

String.substring(0, 10);
Posted by: Guest on May-17-2021

Code answers related to "only take first chars of string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language