I want the program to increase the number of notes when the user enters a number higher than 5 if the user enters 12 then its should say that you have 2 notes. I would also my to know if my code could be made more readable and more efficient
const box = document.getElementById('box');
const store = document.getElementById('store');
function notesChecker() {
  let num = parseInt(box.value);
  if (num / 5 == 0) {
    store.textContent = 'You go this number of notes ' + num;
  } else {
    store.textContent = 'You dont have enough money for notes';
  }
}body {
  text-align: center;
}<h1>Number of notes</h1>
<p>Enter a number and it will tell you the number of notes you will get in £5 notes.</p>
<input id="box" type="number">
<button onclick="notesChecker()">Submit</button>
<div id="store"></div> 
    