- Reference >
- mongo Shell Methods >
- Cursor Methods >
- cursor.map()
cursor.map()¶
On this page
- cursor.map(function)¶
Applies function to each document visited by the cursor and collects the return values from successive application into an array.
The cursor.map() method has the following parameter:
Parameter Type Description function function A function to apply to each document visited by the cursor.
Example¶
db.users.find().map( function(u) { return u.name; } );
See also
cursor.forEach() for similar functionality.
Thank you for your feedback!
We're sorry! You can Report a Problem to help us improve this page.