Answers for "javascript get specific character from string"

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
18

js extract one character from a string

var str = "Hello world That is reallly neat!";
var res = str.substring(0, 5);//get first 5 chars
Posted by: Guest on July-09-2019
2

How find a specific character in js

var word = "This is how you locate a word in a string";
var n = word.includes("word");
Posted by: Guest on November-25-2020
1

how to identify specific letter from a string in javascript

var str = "Hello world, welcome to the universe.";
var n = str.includes("world", 12);
Posted by: Guest on January-28-2021

Code answers related to "javascript get specific character from string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language