const inputs = document.querySelectorAll('.input-js');
const inputHidden = document.getElementById('additional');
// Обход цикла
inputs.forEach((input) => {
input.addEventListener('click', handlerInput);
});
function handlerInput(event) {
inputHidden.value = this.value;
}
inputHidden.value += this.value;