आपको अपना updates
create बनाना होगा दो चरणों में वस्तु:
var updates = { $push: {} };
updates.$push["array.$.array2." + index + ".answeredBy"] = userId;
अपडेट करें
अब जबकि node.js 4+ computed को सपोर्ट करता है। संपत्ति के नाम , आप इसे एक चरण में कर सकते हैं:
var updates = { $push: {
["array.$.array2." + index + ".answeredBy"]: userId
} };