concat concat은 배열을 합치는 거라고 보면 된다 예제만으로도 쉽게 이해가 가능하다 const array1 = ['a', 'b', 'c']; const array2 = ['d', 'e', 'f']; const array3 = array1.concat(array2); console.log(array3); // Expected output: Array ["a", "b", "c", "d", "e", "f"] slice() 배열을 자르는 것으로 slice(a, b) 일경우에 a 이상 c 미만의 요소들을 담는다 a, b가 음수일 경우는 뒤에서부터 생각하면 된 const animals = ['ant', 'bison', 'camel', 'duck', 'elephant']; console.log(animals..