私はこのコードを持っています:
db.collection('coders', function(err, collection) {
collection.find(toFind).toArray(function(err, items) {
res.send(items);
});
wheretoFind
は、It is a String のような{"position":2,"$or":[{"position":{"$lt":20}},{"name":"whatever"}]}
ものです。オブジェクトが必要なため、前のコードは実行されません。String からオブジェクトを作成できることはすでに知っています
var obj={}
obj[key] = {value}
しかし、キーなしでオブジェクトを作成するにはどうすればよいですか?