When I run this,
Module.find(function(err,Module){
console.log(Module);
});
It returns data like
{ _id: 57f769b130bbaf129c586eb5, Name: 'Sydney', Status: true },
{ _id: 57f76e19f30d3c1ca02d002b, Name: 'zamora', Status: true },
How to get the data of Name and Status? and store it in a variable
like in java.
String name = db.getString("Name");