Array.reverse()

Ryu_giseon·2022년 7월 4일
0

JavaScrit

목록 보기
3/6

Array.prototype.reverse()

reverse() 메서드는 배열의 순서를 반전합니다. 첫 번째 요소는 마지막 요소가 되며 마지막 요소는 첫 번째 요소가 됩니다.

ex)

const array1 = ['one', 'two', 'three'];
console.log('array1:', array1);

//결과 "array1:" Array "one", "two", "three"

const reversed = array1.reverse();
console.log('reversed:', reversed);

// 결과 "reversed:" Array "three", "two", "one"

console.log('array1:', array1);

// 결과 "array1:" Array "three", "two", "one"
//reversed에 있는 array1가 이미 변환했기 때문에 "three", "two", "one"가 됨

배열 요소 반전하기

다음 예시는 3개의 요소가 든 myArray 배열을 만든 후, 반전시킵니다.

const a = [1, 2, 3];
console.log(a); //결과 1, 2, 3

a.reverse();
console.log(a); //결과 3, 2, 1

0개의 댓글