내일배움캠프 LGLG!
5주차(주특기 숙련 - React)
reverse()
배열의 순서를 반대로 뒤집어 주는 함수
1
Array.reverse();
원본 자체가 변경됨으로 유의 필요
1
2
3
4
5
6
const array1 = ["a", "b", "c", "d"];
console.log(array1); // a, b, c, d
const reverse1 = array1.reverse();
console.log(reverse1); // d, c, b, a
console.log(array1); // d, c, b, a
전개 연산자를 사용하면 원본 배열 유지 가능
1
2
3
4
5
6
const array2 = ["a", "b", "c", "d"];
console.log(array1); // a, b, c, d
const reverse2 = [...array2].reverse();
console.log(reverse2); // d, c, b, a
console.log(array2); // a, b, c, d