How can I increment the value of an specific element of an array of a MongoDB document in Meteor or nodeJS?
Say, I've following document:
{
"_id" : "4tP6ewe4Z5kwYA3Je",
"name" : "chutia",
"address" : "shonir akhra",
"itemCount" : "4",
"items" : [
"3",
"4",
"13",
"24"
]
}
I need to increment the n
'th element of items
array. Where n
is a variable.