Answer the question
In order to leave comments, you need to log in
How to insert a variable into the key name of a VkScript object?
If we execute the code
var a = {"cname":456};
var parametr = 12331;
a = a + {"name":123, "lol":76478167};
a = a + {parametr: 222};
return a;
response: {cname: 456, name: 123, lol: 76478167, parametr: 222}
response: {cname: 456, name: 123, lol: 76478167, 12331: 222}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question