El método JavaScript Array from() devuelve un objeto Array de cualquier objeto con una propiedad de longitud o un objeto iterable.
Sintaxis:
Array.from(object, mapFunction, thisValue)
Parámetro:
- objeto: este parámetro es necesario para especificar el objeto que se va a convertir en una array.
- mapFunction: este parámetro especifica la función de mapa para llamar a cada elemento de la array.
- currentIndex: este parámetro especifica el índice de array del elemento actual.
- thisValue : este parámetro especifica el valor a usar como este al ejecutar mapFunction.
Valor devuelto: Devuelve un objeto de array.
Ejemplo 1:
<!DOCTYPE html> <html> <body> <center> <h2>GeeksForGeeks </h2> <p>Create an Array from a String:</p> <p id="demo"></p> <script> var myArr = Array.from( "GeeksForGeeks"); document.getElementById( "demo").innerHTML = myArr; </script> </center> </body> </html>
Producción:
Ejemplo-2:
<!DOCTYPE html> <html> <body> <center> <h2>GeeksForGeeks</h2> <p>Create an Array from a String: "45878965412365" </p> <p id="demo"></p> <script> var myArr = Array.from("45878965412365"); document.getElementById( "demo").innerHTML = myArr; </script> </center> </body> </html>
Producción :
Navegadores compatibles:
- Google Chrome 45 y superior
- Borde 12 y superior
- Firefox 32 y superior
- Ópera 32 y superior
- Safari 9 y superior
Publicación traducida automáticamente
Artículo escrito por rathbhupendra y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA