JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text"><br>
<input type="text"><br>
<input type="text"><br>
<input type="text"><br>
<input type="text"><br>
<input type="text"><br>
<input type="text"><br>
JavaScript
const collection = document.getElementsByTagName('input')
console.log(collection)
const inputs = Array.from(collection)
inputs.forEach(inp => inp.value = 1)