Im trying to have something liek this:
let temp={`${otherName}`: `${otherValue}`}
but I get alot of errors with it.
I expected no errors and I know its a typo but ive searched for a soulision for 1 hour. I tried different quotes.
code:
const otherName = document.getElementById(`adminPanelManageUserOtherName`).value;
const otherValue = document.getElementById(`adminPanelManageUserOtherValue`).value;
let temp={`${otherName}`: `${otherValue}`}