Skip to content

Instantly share code, notes, and snippets.

@alvises
Created April 14, 2014 19:08
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 alvises/10675052 to your computer and use it in GitHub Desktop.
Save alvises/10675052 to your computer and use it in GitHub Desktop.
insert for loop
for(i=0; i < 10; ++i) {
db.posts.insert({
_id: i,
title: "Article number "+i
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment