Skip to content

Instantly share code, notes, and snippets.

@agustinpfs
Created July 7, 2020 16:25
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 agustinpfs/3b5fc72e9ef5f11c60e86819dff8cc00 to your computer and use it in GitHub Desktop.
Save agustinpfs/3b5fc72e9ef5f11c60e86819dff8cc00 to your computer and use it in GitHub Desktop.
Javascript básico. Funciones sintaxis.
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