JavaScript - Metodo Array map ()
Descrizione
Matrice Javascript map() metodo crea un nuovo array con i risultati della chiamata di una funzione fornita su ogni elemento in questo array.
Sintassi
La sua sintassi è la seguente:
array.map(callback[, thisObject]);
Dettagli dei parametri
callback - Funzione che produce un elemento del nuovo Array da un elemento di quello corrente.
thisObject - Oggetto da utilizzare come this durante l'esecuzione della richiamata.
Valore di ritorno
Restituisce l'array creato.
Compatibilità
Questo metodo è un'estensione JavaScript dello standard ECMA-262; come tale potrebbe non essere presente in altre implementazioni dello standard. Per farlo funzionare, è necessario aggiungere il codice seguente all'inizio dello script.
if (!Array.prototype.map) {
Array.prototype.map = function(fun /*, thisp*/) {
var len = this.length;
if (typeof fun != "function")
throw new TypeError();
var res = new Array(len);
var thisp = arguments[1];
for (var i = 0; i < len; i++) {
if (i in this)
res[i] = fun.call(thisp, this[i], i, this);
}
return res;
};
}
Esempio
Prova il seguente esempio.
<html>
<head>
<title>JavaScript Array map Method</title>
</head>
<body>
<script type = "text/javascript">
if (!Array.prototype.map) {
Array.prototype.map = function(fun /*, thisp*/) {
var len = this.length;
if (typeof fun != "function")
throw new TypeError();
var res = new Array(len);
var thisp = arguments[1];
for (var i = 0; i < len; i++) {
if (i in this)
res[i] = fun.call(thisp, this[i], i, this);
}
return res;
};
}
var numbers = [1, 4, 9];
var roots = numbers.map(Math.sqrt);
document.write("roots is : " + roots );
</script>
</body>
</html>
Produzione
roots is : 1,2,3