JavaScript: String substr()

The JavaScript String substr() method returns a part of a given string, starting from the specified index and going up to the specified length.

See below example

var str = "Hello world!";
var res = str.substr(1, 4);

console.log(res);

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: