чтобы ид не повторялись, как сделать что-то типа
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div>
<input id="YearEntry" type="number" min="326" max="4099" step="1" value="2019" />
<input id="button1" type="button" value="Расcчитать" />
</div>
<script type="text/javascript">
"use strict";
var btn = document.querySelector("#button1");
btn.addEventListener("click", () => {
vat yearEntry = document.querySelector("#YearEntry").value;
if (yearEntry <= 325) {
// code
} else if (yearEntry >= 326 && yearEntry <= 1582) {
// code
} else if (yearEntry >= 1683 && yearEntry <= 4099) {
// code
} else if (yearEntry >= 4100) {
// code
}
});
</script>
</body>
</html>