Gervasio Junior

Results 1 comments of Gervasio Junior

try: ``` collection.insert([{ hello: 'world' }], { w: 1 }, function () { collection.find({ hello: 'world' }).toArray(function (e, a) { if(e) { throw new Error(e); } console.log(a); }); }); ```