document.getElementsByName()
An old method that has unexpected results in an edge case involving for loops. Instead use document.querySelectorAll()* which is the Swiss ArmyTM knife of DOM methods. Replace the following methods on the left with the methods on the right:
  <article class='x' name='x'></article>
  // ... Any amount of DOM elements that meet specific traits
  document.getElementsByClassName('x') /* ------> */ document.querySelectorAll('.x')
  document.getElementsByName('x') /* -----------> */ document.querySelectorAll('[name=x]')
  document.getElementsByTagName('article') /* --> */ document.querySelectorAll('article')
* Also see this article
If these DOM elements are form controls (aka fields -- ex. <input>, <select></select>, etc), and are within a <form></form> (which they should be, although still valid without a <form></form>) -- .forms and .elements properties can be used:
<form id='x'>
  <input name='z'>
  // ... Any amount of fields with the name of 'z' (ie ['name=z'])
</form>
// Reference form#x
const fx = document.forms.x
// Reference all form controls within form#x
const fc = fx.elements
// Reference all form controls with ['name=z'] within form#x
const fz = fc.z
/* OR */
/* The above statements in one line */
const fXCZ = document.forms.x.elements.z
Demo
Details are commented in demo
//~~[1]~~
/* Reference DOM Elements *///
//1a. 
/* Example 1 */
// Reference all fields within form#example1
const exp1 = document.forms.example1.elements;
/*
Collect all input[name=quantity] within form#example1 into a HTML Collection
*/
const qty1 = exp1.quantity;
//1b. 
/* Example 2 */
// Reference form#example2
const exp2 = document.getElementById('example2');
/*
Collect all input within form#example2 into a NodeList 
*/
const qty2 = exp2.querySelectorAll('input');
//~~[2]~~
/* Define Function *///
//2.
/*
@Params collection -- An array-like object of fields (ex. qty1 or qty2)
        dataString -- A String assigned to each field - defaults to "0" 
                      if not specified
*/
function changeValue(collection, dataString = "0") {
  collection.forEach(field => field.value = dataString);
}
//~~[3]~~
/* Invoke setTimeout() *///
//3a.
/* Example 1 */
setTimeout(function() {
  changeValue(qty1, '0');
}, 15000);
//3b.
/* Example 2 */
setTimeout(function() {
  changeValue(qty2);
}, 15000);
<form id='example1'>
  <input name="quantity" type="number" value="1" size="3">
  <input name="quantity" type="number" value="1" size="3">
  <input name="quantity" type="number" value="1" size="3">
  <input name="quantity" type="number" value="1" size="3">
  <input name="quantity" type="number" value="1" size="3">
  <input name="quantity" type="number" value="1" size="3">
</form>
<hr>
<form id='example2'>
  <input name="quantity" type="number" value="1" size="3">
  <input name="quantity" type="number" value="1" size="3">
  <input name="quantity" type="number" value="1" size="3">
  <input name="quantity" type="number" value="1" size="3">
  <input name="quantity" type="number" value="1" size="3">
  <input name="quantity" type="number" value="1" size="3">
</form>