Last active
September 10, 2020 18:28
-
-
Save Chesare22/cf71c57853d758ab570d1cd3a0fe5844 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Función anónima | |
function(/* parámetros */) { | |
/* cuerpo */ | |
} | |
// Función flecha | |
(/* parámetros */) => { | |
/* cuerpo */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment