Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 30, 2019 00:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/67c07a89c455955bc7faa08dfe00c9ef to your computer and use it in GitHub Desktop.
Save parzibyte/67c07a89c455955bc7faa08dfe00c9ef to your computer and use it in GitHub Desktop.
/**
* Ejemplos y explicación de Array Map
* en JavaScript
*
* https://parzibyte.me/blog
*
*/
const numeros = [25, 100, 81];
const raicesCuadradas = numeros.map(Math.sqrt);
console.log(raicesCuadradas);
/*
Salida:
[ 5, 10, 9 ]
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment