It would be better to do your evaluation only for the particular elements that could be effectedaffected each time rather than to reevaluate all of them on any change in any input.
We can rewrite this to pass along the element that triggered the event and the ID of the element that we want to update the style on. Take a look at this:
function quantityCheck(eventElement, quantity) {
//try to use const or let instead of var.
//by passing 'this', we now have the target element that triggered the event,
//so we only need to grab the one we want to change.
const quantToChange = document.getElementById(quantity);
//we can also use a tertiary function to make our change to shorten things a bit.
quantToChange.style.display = eventElement.value.length ? '' : 'none';
}
<div>
<span>Quantity 1</span>
<input type="number" id="Quantity1Value" oninput="quantityCheck(this, 'Quantity2')" required>
</div>
<div id="Quantity2" style="display:none">
<span>Quantity 2</span>
<input type="number" id="Quantity2Value" oninput="quantityCheck(this, 'Quantity3')">
</div>
<div id="Quantity3" style="display:none">
<span>Quantity 3</span>
<input type="number" id="Quantity3Value" oninput="quantityCheck(this, 'Quantity4')">
</div>
<div id="Quantity4" style="display:none">
<span>Quantity 4</span>
<input type="number" id="Quantity4Value">
</div>