Answers for "how to get a specific character from a string javascript"

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

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language