Как передать аргумент, который передается в функцию в обработчик событий addeventlistener?
Нужно передать аргумент total в addeventlistener и в него записывать btn.value
function getValue(trigger, total) {
trigger.forEach(btn => {
btn.addEventListener('click', (total) => {
total = btn.value;
totalSum.textContent = 'от ' + calcTypeValue * calcSmcValue * calcCalcValue * calcMoneyValue *
calcRegistrationValue * calcLogoValue * calcContentValue * calcPeriodValue + ' рублей';
console.log(calcTypeValue);
console.log(total);
});
});
}
getValue(calcType, calcTypeValue);
getValue(calcPeriod, calcPeriodValue);
getValue(calcSmc, calcSmcValue);
getValue(calcContent, calcContentValue);
getValue(calcCalc, calcCalcValue);
getValue(calcMoney, calcMoneyValue);
getValue(calcLogo, calcLogoValue);
getValue(calcRegistration, calcRegistrationValue);