Skip to content

Instantly share code, notes, and snippets.

@timbergus
Last active June 14, 2019 12:49
Show Gist options
  • Save timbergus/d095b3a249e4e38c4e52d66d2cccf88b to your computer and use it in GitHub Desktop.
Save timbergus/d095b3a249e4e38c4e52d66d2cccf88b to your computer and use it in GitHub Desktop.
function handleClick() {
// 1. Selecciona el botón.
const button = document.querySelector('input[type=button]');
// 2. Cambia el color de verde a rojo.
button.style.backgroundColor = 'red';
// 3. Cambia el texto de "Click Me!" a "See You!".
button.value = 'See You!';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment