Sous-chaîne réagitive

var str = "Hello world!";

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

// res value is "ell"
Tintinero1