Skip to content

Instantly share code, notes, and snippets.

@asalant
Created October 11, 2012 03:21
Show Gist options
  • Select an option

  • Save asalant/3869961 to your computer and use it in GitHub Desktop.

Select an option

Save asalant/3869961 to your computer and use it in GitHub Desktop.
Ubiquitous JS example: Mongo query
> db.users.find({ email: /gmail\.com$/i }).pretty()
{
"_id" : ObjectId("5031b5a6166d270200001858"),
"name" : "Dan Theman",
"email" : "[email protected]",
"passwordHash" : "####",
"updatedAt" : ISODate("2012-08-20T03:57:26.584Z"),
"createdAt" : ISODate("2012-08-20T03:57:26.584Z"),
}
...
has more
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment