Здравствуйте. Есть следующтй код. Можно ли как-то выходные данные в автоматическом формате добавлять в обьект в формате key.value?
for (let index = 0; index < inputs.length; index++) {
if (inputs[index].type == "radio" && inputs[index].checked == true) {
let key = inputs[index].getAttribute("name");
let value = inputs[index].nextElementSibling.innerText;
}
}
/* dates */
let object = {
price: totalSum.innerText,
matches: totalQuantity.value,
name: name.value,
email: email.value,
contacts: contacts.value,
};