JavaScript: substring() method

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

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

Blog at WordPress.com.

%d bloggers like this: