Skip to content

Instantly share code, notes, and snippets.

@maykonchagas
Created July 29, 2022 13:02
Show Gist options
  • Save maykonchagas/279136663422e86e283c0012f2e7b7bc to your computer and use it in GitHub Desktop.
Save maykonchagas/279136663422e86e283c0012f2e7b7bc to your computer and use it in GitHub Desktop.
'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