TIL: String.substring

Snoop So·2023년 3월 23일
0

String.substring

substring 안에는 해당 글자의 index 번호를 지정해주면 된다.
string은 항상 원본 보존이 된다.

const str = 'Mozilla';

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

0개의 댓글