목록2024/05/20 (1)
기초공사 (html,css,javascript)
splice와 indexOf예제
//const arr6 = [1, 2, 3, 1, 2];function remove(array, item) { const index = array.indexOf(item); //item 2 --> 1 //item 10 -> -1 console.log(index); if (index != -1) array.splice(index, 1); //item 2-->array.indexOf(2)--> 2라는 요소가 처음에 1번쨰에 있으므로 변수 index는 1이다. // 1과 -1이 같지 않다면--같지않지 - array.splice(1,1) // 1부터 한개 지우면 남는것이 [1 3 1 2] // item 10 --> array.indexOf(10)->10이라는 요소가 없다. index =-1이다...
academy/JavaScript
2024. 5. 20. 13:03