Esta traducción está incompleta. Por favor, ayuda a traducir este artículo del inglés.
This is a new technology, part of the ECMAScript 2015 (ES6) standard.
This technology's specification has been finalized, but check the compatibility table for usage and implementation status in various browsers.
El método Array.of()
crea una nueva instancia Array
con un número variable de elementos pasados como argumento, independientemente del número o del tipo.
La diferencia entre Array.of()
y el constructor Array
reside en como maneja los parámetros de tipo entero: Array.of(42)
crea un array con un solo elemento, 42
, mientras Array(42)
crea un array con 42 elementos, el cual, cada uno es de tipo undefined
.
Síntaxis
Array.of(element0[, element1[, ...[, elementN]]])
Parámetros
elementoN
- Valores con los que se creará el Array.
Descripción
Esta función es parte del estandar ECMAScript6. Para mas información ver Array.of
y Array.from
proposal y
Array.of
polyfill.
Ejemplos
Array.of(1); // [1] Array.of(1, 2, 3); // [1, 2, 3] Array.of(undefined); // [undefined]
Polyfill
Escribiendo el siguiente código antes de cualquier otro, podemos emular la funcionalidad de Array.of()
si esta no está disponible de forma nativa.
if (!Array.of) { Array.of = function() { return Array.prototype.slice.call(arguments); }; }
Especificaciones
Especificaciones | Estado | Comentario |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Array.of' in that specification. |
Standard | Definición inicial. |
Compatibilidad con navegadores
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 45 | 25 (25) | Not supported | Not supported | Not supported |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | Not supported | 39 | 25.0 (25) | Not supported | Not supported | Not supported |