How to use variable as Object Key?

How to use a variable as an Object Key [MongoDB]

  • I'm trying to use variable name given to me by my function, but its actually setting the object key equal to 'name' function addlist(name, item, id){ // Add to user's list var $push = {}; $push[name] = item; console.log(id); db.collection('newcon').update({_id: id}, {"$push": {name: item}}); ret(id); } Other solutions similar to this don't work, since I need to also have it build onto the array every time this function is called, not replace whatever is in it each time.

  • Answer:

    JavaScript has no nice notation for creating an object where the keys are variables: var $push_query = {}; $push_query[name] = item; ... {"$push": $push_query} ...

Ajax jQuery at Stack Overflow Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.