.substring

.·2020년 9월 14일
0
post-custom-banner

const str = 'Mozilla';

console.log(str.substring(1, 3));
// expected output: "oz"

console.log(str.substring(2));
// expected output: "zilla"

substr은 왠진 모르겠으나 MDN에서 추천되지 않음

0개의 댓글