Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 27, 2019 18:01
Show Gist options
  • Save parzibyte/88ced82676c9e7cb80e93521a4b95fb4 to your computer and use it in GitHub Desktop.
Save parzibyte/88ced82676c9e7cb80e93521a4b95fb4 to your computer and use it in GitHub Desktop.
// Definir una función llamada saludar que recibe el nombre y la edad
const saludar = (nombre, edad) => {
console.log(`Hola ${nombre} tu edad es de ${edad}`);
};
// Llamar a saludar y pasarle argumentos
setTimeout(saludar, 1000, "Luis", 20);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment