reactjs cut part of string

JavaScript
var str = "Hello world!";

var res = str.substring(1, 4);

// res value is "ell"

Source

Also in JavaScript: