react show only substring code example
Example: reactjs cut part of string
var str = "Hello world!";
var res = str.substring(1, 4);
// res value is "ell"
var str = "Hello world!";
var res = str.substring(1, 4);
// res value is "ell"