substring 안에는 해당 글자의 index 번호를 지정해주면 된다. string은 항상 원본 보존이 된다.
const str = 'Mozilla'; console.log(str.substring(1, 3)); // Expected output: "oz"