Answers for "js first x of string"

23

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
0

JavaScript - The first word of a string

const str = "What day of the week is it?";

// 1) the match() method:
str.match(/^\w+\s/)[0];// => What

// 2) the split() method:
str.split(' ')[0];  // => What

// 3) the slice() method:
str.slice(0, str.indexOf(' ')); // => What
Posted by: Guest on February-02-2022

Code answers related to "js first x of string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language