Last active
June 14, 2019 12:49
-
-
Save timbergus/d095b3a249e4e38c4e52d66d2cccf88b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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