티스토리 뷰
문법
slice(start, end);
start부터 end 인덱스의 전까지의 복사본을 새로 배열로 만들어 반환한다, 원본 데이터에 영향을 주지 않는다
const str = "자바스크립트(javascript) 공부";
const text1 = str.slice(1, 4);
const text2 = str.slice(1);
const text3 = str.slice(5, 1); // 시작 인덱스가 종료 인덱스보다 작아야 됨(실행 안됨)
결과
const str = "자바스크립트(javascript) 공부";
const text1 = str.slice(1, 4);
const text2 = str.slice(1);
const text3 = str.slice(5, 1);
document.write(text1, "<br>");
document.write(text2, "<br>");
document.write(text3, "<br>");
document.write("세번째 값은 출력되지 않는다");
댓글
© 2018 webstoryboy