Skip to content

Instantly share code, notes, and snippets.

@mauriciogc
Created April 4, 2020 00:34
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 mauriciogc/ec0a81301ecbebbf3699a0a284476710 to your computer and use it in GitHub Desktop.
Save mauriciogc/ec0a81301ecbebbf3699a0a284476710 to your computer and use it in GitHub Desktop.
//...
const alertMessage = () => {
alert('Hello, im a message :)');
};
const foo = () => {
alert('Hello, im a foo :)');
};
//Esto es lo que agregamos
const btn = document.querySelector('#btnAlert');
btn.onclick = alertMessage;
btn.onclick = foo;
//...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment