次のコードがあります。
var self = this;
var test = function (name, properties) {
self[name] = {
prop1: "test1",
prop2: "test2"
};
// some code here assigning properties object to self[name] object
};
test("myObj", { "prop3": "test3", "prop4": "test4" });
私が達成する必要があるのは、properties
オブジェクトのコンテンツを割り当ててmyObj
、最終的に次のようにすることです。
self["myObj"] = {
prop1: "test1",
prop2: "test2",
prop3: "test3",
prop4: "test3"
};