Created
July 7, 2020 16:25
-
-
Save agustinpfs/3b5fc72e9ef5f11c60e86819dff8cc00 to your computer and use it in GitHub Desktop.
Javascript básico. Funciones sintaxis.
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
function nombre_de_la_funcion(parametro1, parametro2) { | |
// código (sentencias) | |
} | |
//Para invocar: | |
nombre_de_la_funcion(argumento1, argumento2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment