Skip to content

Instantly share code, notes, and snippets.

@joesavak
Last active April 30, 2018 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joesavak/f388e8bbe2dc8f771cd6f740219066a3 to your computer and use it in GitHub Desktop.
Save joesavak/f388e8bbe2dc8f771cd6f740219066a3 to your computer and use it in GitHub Desktop.
LoanModel.find({},{},{limit: 4, sort:{timestamp:-1}}).exec(function(error, loans) {
if(error){throw error;}
for (var i = 0; i<loans.length; i++) {
viewModel.loans[i]=loans[i].toObject();
}
res.render('index',viewModel);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment