Given the following HTML and JavaScript, which of the options will correctly verify that the user has entered a number between 1 and 100?
<input type="number" id="age">
const age = document.getElementById('age').value;
Given the following HTML and JavaScript, which of the options will correctly verify that the user has entered a number between 1 and 100?
<input type="number" id="age">
const age = document.getElementById('age').value;