Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 26, 2018 19:57
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/c9b96e2203c4695ff84ac676eb8129db to your computer and use it in GitHub Desktop.
Save parzibyte/c9b96e2203c4695ff84ac676eb8129db to your computer and use it in GitHub Desktop.
var visitante = "Luis";
var saludo = function(nombre){
return `¡Hola, ${nombre}!`;
}
var sumar = function(a, b){
return a + b;
}
console.log(`${saludo(visitante)} Bienvenido a mi sitio. 5 + 5 es igual a ${sumar(5, 5)}`)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment