Navigation

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.