reverse 메서드
요소들이 역으로 나열된 Array 개체를 반환합니다.
function reverse() : Array
설명
reverse 메서드는 Array 개체의 요소를 역으로 나열합니다. 실행 도중 새 Array 개체를 만들지 않습니다.
배열이 연속적이지 않으면 reverse 메서드는 배열의 간격을 채우는 배열 요소를 만듭니다. 이렇게 만들어진 각 요소에는 정의되지 않은 값이 있습니다.
예제
다음 예제는 reverse 메서드의 사용 예를 보여 줍니다.
function ReverseDemo(){
var a, l; //Declare variables.
a = new Array(0,1,2,3,4); //Create an array and populate it.
l = a.reverse(); //Reverse the contents of the array.
return(l); //Return the resulting array.
}