Created
July 29, 2022 13:02
-
-
Save maykonchagas/279136663422e86e283c0012f2e7b7bc 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
'use strict'; | |
const number = Math.trunc(Math.random() * 20) + 1; | |
// Math.trunc(Math.random() * 21) | |
//document.querySelector('.message').textContent = 'Hello World!'; | |
//document.querySelector('.score').textContent = 42; | |
document.querySelector('.number').textContent = number; | |
document.querySelector('.check').addEventListener('click', | |
function () { | |
const guess = document.querySelector('.guess').value; | |
if (!guess) { | |
document.querySelector('.message').textContent = '💣No number'; | |
} | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment