Use your browser's js capabilities to debug your MapReduce code. The following identifiers are available:
- map_func
- Your mapping function
- reduce_func
- Your reduce function
- data
- The queried data from the db
- map()
- Function to call the map-step
- mapped
- The map of id->values after the map-step
- reduce()
- Function to call the reduce-step
- reduced
- The map of id->value after the reduce-step