const str = 'Mozilla';
console.log(str.substring(1, 3)); // expected output: "oz"
console.log(str.substring(2)); // expected output: "zilla"
substr은 왠진 모르겠으나 MDN에서 추천되지 않음