I want to concatenate the contents of one object with another, but within the same list/command:
var MyVar = {
options: {
option1: "foo",
option2: "bar",
option3: "It's not kung "+options.option1+", but kung fu",
}
}
this doesn't work, any hints on what I'm doing wrong here?