Movatterモバイル変換


[0]ホーム

URL:


  1. Tecnología web para desarrolladores
  2. JavaScript
  3. Referencia de JavaScript
  4. Objetos globales
  5. Array
  6. Array.prototype.reverse()

Esta página ha sido traducida del inglés por la comunidad.Aprende más y únete a la comunidad de MDN Web Docs.

View in EnglishAlways switch to English

Array.prototype.reverse()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨julio de 2015⁩.

El métodoreverse() invierte el orden de los elementos de un arrayin place. El primer elemento pasa a ser el último y el último pasa a ser el primero.

Pruébalo

const array1 = ["one", "two", "three"];console.log("array1:", array1);// Expected output: "array1:" Array ["one", "two", "three"]const reversed = array1.reverse();console.log("reversed:", reversed);// Expected output: "reversed:" Array ["three", "two", "one"]// Careful: reverse is destructive -- it changes the original array.console.log("array1:", array1);// Expected output: "array1:" Array ["three", "two", "one"]

Sintaxis

reverse()

Valor devuelto

El array invertido.

Descripción

El métodoreverse cruza los elementos del objeto matriz invocados en su lugar, mutando la matriz, y retornando una referencia a la misma.

Ejemplos

Colocar al revés los elementos de un array

El siguiente ejemplo crea un arraya que contiene tres elementos y luego lo invierte.La llamada areverse() devuelve una referencia al arraya invertido.

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

Especificaciones

Specification
ECMAScript® 2026 Language Specification
# sec-array.prototype.reverse

Compatibilidad con navegadores

Ver también

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp