Hello again :)
I am having a problem where I want to change a particular variable based on what parameters I send to a js function.
In the code below, dnum is a number 1-6, and I want the global variable d1keep (or d2keep, d3keep etc.) to equal the dvalue.
function KeepDie(dnum, dvalue) {
d+dnum+keep=dvalue;
... (more code)
}
I've tried using single quotes, double quotes, brackets, curly brackets, parentheses, and other punctuation in many locations all over that line of code, but I cannot get it to work.
Please help, thanks!