The JavaScript String substring() method returns a subset of a string between two specified indices. This method extracts the characters in a string between two specified indices and returns the new sub string.
See the below example
var str = "Hello world!";
var res = str.substring(1, 4);
console.log(res); // el
Leave a Reply