sybstring node code example
Example: js substring
// the substring method returns a string out of another string
const str = 'Mozilla';
console.log(str.substring(1, 3));
// expected output: "oz"
console.log(str.substring(2));
// expected output: "zilla"