Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Array Methods

MethodDescriptionExampleResult
.추가(값)Appendarr.추가(6)mutates in place
.삭제(인덱스)Remove at indexarr.삭제(0)returns removed value
.길이()Lengtharr.길이()5
.포함(값)Containsarr.포함(3)
.역순()Reversearr.역순()new reversed array
.정렬()Sortarr.정렬()new sorted array
.합치기(구분자)Join to stringarr.합치기(", ")"1, 2, 3"