Answers for "extract character from string js"

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

javascript get character from string

// (ES6 / ES2015)+ way of doing it
const str = "Hello World!";
const chars = [...str];

// Pre-ES2015 way of doing it
var chars2 = str.split("");
Posted by: Guest on February-27-2021
0

javascript get character from string

const str = "Hello World";
const firstCharacter = str.charAt(0);
Posted by: Guest on March-02-2021

Code answers related to "extract character from string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language