javascript get characters in string code example
Example 1: 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("");
Example 2: find char in string javascript
var str = "Hello world, welcome to the universe.";
var n = str.indexOf("e");