how to extract a single character from a string in javascript code example
Example 1: substring javascript
var str = "Hello world!";
var res = str.substring(1, 4); //ell
Example 2: how to extract a single character from a string in javascript
var str = "Hello world That is reallly neat!";
var res = str.substring(0, 5);//get first 5 chars