str.substr(), str.substring()차이 javascript

이태혁·2020년 9월 8일
0

"hello".substr(2, 3);  // "llo" -> 2번째부터 3개 추출
"hello".substring(2, 3); // "l" -> 2번째부터 3번째 직전까지 추출
profile
back-end, cloud, docker, web의 관심이 있는 예비개발자입니다.

0개의 댓글