| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/es/docs/Web/JavaScript/Reference/Global_Objects/Array/map | [Back] [Original] |
Get to know MDN better
Esta pgina ha sido traducida del ingls por la comunidad. Aprende ms y nete a la comunidad de MDN Web Docs.
This feature is well established and works across many devices and browser versions. Its been available across browsers since julio de 2015.
El mtodo map() crea un nuevo array con los resultados de la llamada a la funcin indicada aplicados a cada uno de sus elementos.
var numbers = [1, 5, 10, 15];
var doubles = numbers.map(function (x) {
return x * 2;
});
// doubles is now [2, 10, 20, 30]
// numbers is still [1, 5, 10, 15]
var numbers = [1, 4, 9];
var roots = numbers.map(function (num) {
return Math.sqrt(num);
});
// roots is now [1, 2, 3]
// numbers is still [1, 4, 9]
var nuevo_array = arr.map(function callback(currentValue, index, array) {
// Elemento devuelto de nuevo_array
}[, thisArg])
callbackFuncin que producir un elemento del nuevo array, recibe tres argumentos:
currentValueEl elemento actual del array que se est procesando.
indexEl ndice del elemento actual dentro del array.
arrayEl array sobre el que se llama map.
thisArgOpcional. Valor a usar como this al ejecutar callback.
Un nuevo array en la que cada elemento es el resultado de ejecutar callback.
map llama a la funcin callback provista una vez por elemento de un array, en orden, y construye un nuevo array con los resultados. callback se invoca slo para los ndices del array que tienen valores asignados; no se invoca en los ndices que han sido borrados o a los que no se ha asignado valor.
callback es llamada con tres argumentos: el valor del elemento, el ndice del elemento, y el objeto array que se est recorriendo.
Si se indica un parmetro thisArg a un map, se usar como valor de this en la funcin callback. En otro caso, se pasar undefined como su valor this. El valor de this observable por el callback se determina de acuerdo a las reglas habituales para determinar el valor this visto por una funcin.
map no modifica el array original en el que es llamado (aunque callback, si es llamada, puede modificarlo).
El rango de elementos procesado por map es establecido antes de la primera invocacin del callback. Los elementos que sean agregados al array despus de que la llamada a map comience no sern visitados por el callback. Si los elementos existentes del array son modificados o eliminados, su valor pasado al callback ser el valor en el momento que el map lo visita; los elementos que son eliminados no son visitados.
El siguiente cdigo itera sobre un array de nmeros, aplicndoles la raz cuadrada a cada uno de sus elementos, produciendo un nuevo array a partir del inicial.
var numeros = [1, 4, 9];
var raices = numeros.map(Math.sqrt);
// raices tiene [1, 2, 3]
// numeros an mantiene [1, 4, 9]
El siguiente cdigo toma un array de objetos y crea un nuevo array que contiene los nuevos objetos formateados.
var kvArray = [
{ clave: 1, valor: 10 },
{ clave: 2, valor: 20 },
{ clave: 3, valor: 30 },
];
var reformattedArray = kvArray.map(function (obj) {
var rObj = {};
rObj[obj.clave] = obj.valor;
return rObj;
});
// reformattedArray es ahora [{1:10}, {2:20}, {3:30}],
// kvArray sigue siendo:
// [{clave:1, valor:10},
// {clave:2, valor:20},
// {clave:3, valor: 30}]
El siguiente cdigo muestra cmo trabaja map cuando se utiliza una funcin que requiere de un argumento. El argumento ser asignado automticamente a cada elemento del arreglo conforme map itera el arreglo original.
var numeros = [1, 4, 9];
var dobles = numeros.map(function (num) {
return num * 2;
});
// dobles es ahora [2, 8, 18]
// numeros sigue siendo [1, 4, 9]
map de forma genricaEste ejemplo muestra como usar map en String para obtener un arreglo de bytes en codifcacin ASCII representando el valor de los caracteres:
var map = Array.prototype.map;
var valores = map.call("Hello World", function (char) {
return char.charCodeAt(0);
});
// valores ahora tiene [72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100]
map genrico con querySelectorAllEste ejemplo muestra como iterar sobre una coleccin de objetos obtenidos por querySelectorAll. En este caso obtenemos todas las opciones seleccionadas en pantalla y se imprimen en la consola:
var elems = document.querySelectorAll("select option:checked");
var values = [].map.call(elems, function (obj) {
return obj.value;
});
map para invertir una cadenavar str = "12345";
[].map
.call(str, function (x) {
return x;
})
.reverse()
.join("");
// Salida: '54321'
// Bonus: usa'===' para probar si la cadena original era un palindromo
Es comn utilizar el callback con un argumento (el elemento siendo pasado). Ciertas funciones son tambin usadas comunmente con un argumento, an cuando toman argumentos adicionales opcionales. Estos hbitos pueden llevar a comportamientos confusos.
// Considera:
["1", "2", "3"].map(parseInt);
// Mientras uno esperara [1, 2, 3]
// en realidad se obtiene [1, NaN, NaN]
// parseInt se usa comnmente con un argumento, pero toma dos.
// El primero es una expresin y el segundo el radix.
// a la funcin callback, Array.prototype.map pasa 3 argumentos:
// el elemento, el ndice y el array.
// El tercer argumento es ignorado por parseInt, pero no el segundo,
// de ah la posible confusin. Vase el artculo del blog para ms detalles
function returnInt(element) {
return parseInt(element, 10);
}
["1", "2", "3"].map(returnInt); // [1, 2, 3]
// El resultado es un arreglo de nmeros (como se esperaba)
// Un modo ms simple de lograr lo de arriba, mientras de evita el "gotcha":
["1", "2", "3"].map(Number); // [1, 2, 3]
map fue agregado al estandar ECMA-262 en la 5th edicin; por lo tanto podra no estar presente en todas la implementaciones del estndar. Puedes sobrepasar esto insertando el siguiente cdigo al comienzo de tus scripts, permitiendo el uso de map en implementaciones que no lo soportan de forma nativa. Este algoritmo es exactamente el mismo especificado en ECMA-262, 5th edicin, asumiendo Object, TypeError, y Array tienen sus valores originales y que el callback.call evalua el valor original de .Function.prototype.call
// Production steps of ECMA-262, Edition 5, 15.4.4.19
// Reference: http://es5.github.io/#x15.4.4.19
if (!Array.prototype.map) {
Array.prototype.map = function (callback, thisArg) {
var T, A, k;
if (this == null) {
throw new TypeError(" this is null or not defined");
}
// 1. Let O be the result of calling ToObject passing the |this|
// value as the argument.
var O = Object(this);
// 2. Let lenValue be the result of calling the Get internal
// method of O with the argument "length".
// 3. Let len be ToUint32(lenValue).
var len = O.length >>> 0;
// 4. If IsCallable(callback) is false, throw a TypeError exception.
// See: http://es5.github.com/#x9.11
if (typeof callback !== "function") {
throw new TypeError(callback + " is not a function");
}
// 5. If thisArg was supplied, let T be thisArg; else let T be undefined.
if (arguments.length > 1) {
T = thisArg;
}
// 6. Let A be a new array created as if by the expression new Array(len)
// where Array is the standard built-in constructor with that name and
// len is the value of len.
A = new Array(len);
// 7. Let k be 0
k = 0;
// 8. Repeat, while k < len
while (k < len) {
var kValue, mappedValue;
// a. Let Pk be ToString(k).
// This is implicit for LHS operands of the in operator
// b. Let kPresent be the result of calling the HasProperty internal
// method of O with argument Pk.
// This step can be combined with c
// c. If kPresent is true, then
if (k in O) {
// i. Let kValue be the result of calling the Get internal
// method of O with argument Pk.
kValue = O[k];
// ii. Let mappedValue be the result of calling the Call internal
// method of callback with T as the this value and argument
// list containing kValue, k, and O.
mappedValue = callback.call(T, kValue, k, O);
// iii. Call the DefineOwnProperty internal method of A with arguments
// Pk, Property Descriptor
// { Value: mappedValue,
// Writable: true,
// Enumerable: true,
// Configurable: true },
// and false.
// In browsers that support Object.defineProperty, use the following:
// Object.defineProperty(A, k, {
// value: mappedValue,
// writable: true,
// enumerable: true,
// configurable: true
// });
// For best browser support, use the following:
A[k] = mappedValue;
}
// d. Increase k by 1.
k++;
}
// 9. return A
return A;
};
}
| Specification |
|---|
| ECMAScript 2027 LanguageSpecification # sec-array.prototype.map |
This page was last modified on 29 may 2026 by MDN contributors.
ArrayArray.prototype.at()Array.prototype.concat()Array.prototype.copyWithin()Array.prototype.entries()Array.prototype.every()Array.prototype.fill()Array.prototype.filter()Array.prototype.find()Array.prototype.findIndex()findLast()findLastIndex()Array.prototype.flat()Array.prototype.flatMap()Array.prototype.forEach()Array.prototype.includes()Array.prototype.indexOf()Array.prototype.join()Array.prototype.keys()Array.prototype.lastIndexOf()Array.prototype.map()Array.prototype.pop()Array.prototype.push()Array.prototype.reduce()Array.prototype.reduceRight()Array.prototype.reverse()Array.prototype.shift()Array.prototype.slice()Array.prototype.some()Array.prototype.sort()Array.prototype.splice()Array.prototype.toLocaleString()toReversed()Array.prototype.toSorted()toSpliced()Array.prototype.toString()Array.prototype.unshift()Array.prototype.values()with()Array.prototype[@@iterator]()Object/FunctionYour blueprint for a better internet.
Portions of this content are 19982026 by individual mozilla.org contributors. Content available under a Creative Commons license.
| Web Proxy Viewer | New URL | Original Page |