두 함수 모두 배열에서 요소를 추출하거나 배열을 변경하는데 사용된다.
두 함수의 목적이나 사용법에 대해 알아보자
// Example array
const fruits = ['apple', 'banana', 'orange', 'mango', 'kiwi'];
// Using slice()
const slicedFruits = fruits.slice(1, 4);
console.log(slicedFruits);
// Output: ['banana', 'orange', 'mango']
console.log(fruits);
// Output: ['apple', 'banana', 'orange', 'mango', 'kiwi']
// Using splice()
const splicedFruits = fruits.splice(1, 3);
console.log(splicedFruits);
// Output: ['banana', 'orange', 'mango']
console.log(fruits);
// Output: ['apple', 'kiwi']
글이 많은 도움이 되었습니다, 감사합니다.