请注意,在下面的示例中,两者create
和update
是相同的。我相信有可能update
只是create
's 代码的别名,而无需第二次写出来。
this.VAROPS = {
// variable operations
create: function(id, value) { variables[id] = value; }
, delete: function(id) { delete variables[id]; }
, update: function(id, value) { variables[id] = value; }
};