Is there a better way to write that :
var modifier = {};
modifier[rowId + '.' + columnName] = value;
I can't use the following as it only accepts a constant for the first part.
modifier = { rowId + '.' + columnName : value}
Thanks.
Is there a better way to write that :
var modifier = {};
modifier[rowId + '.' + columnName] = value;
I can't use the following as it only accepts a constant for the first part.
modifier = { rowId + '.' + columnName : value}
Thanks.