parte de Sting JS
let text = "Hello world!";
let result = text.substr(1, 4);"
Result: "ello"
Elegant Eel
let text = "Hello world!";
let result = text.substr(1, 4);"
Result: "ello"