javascript substing code example

Example 1: substring javascript

var str = "Hello world!";
var res = str.substring(1, 4); //ell

Example 2: substr() javascript

const str = 'substr';

console.log(str.substr(1, 2)); // (1, 2): ub
console.log(str.substr(1)); // (1): ubstr

/* Percorrendo de trás para frente */
console.log(str.substr(-3, 2)); // (-3, 2): st
console.log(str.substr(-3)); // (-3): str

Example 3: javascript substring

string.substring( start, end )

Example 4: javascript substring

// zero-based index, 'end' is excluded from result
myString.substring( start, end )