first 2 string values in javascript code example
Example 1: substring javascript
var str = "Hello world!";
var res = str.substring(1, 4); //ell
Example 2: reactjs cut part of string
var str = "Hello world!";
var res = str.substring(1, 4);
// res value is "ell"