Hello,
I came across the following code fragment in a CouchDB book.
function(doc) {
doc.tags && doc.tags.forEach(function(tag) {
emit(tag, 1);
});
}
Can some one explain how does the function(tag) part works?
Thanks and regards,
raj
|
|
Hello, I came across the following code fragment in a CouchDB book.
Can some one explain how does the function(tag) part works? Thanks and regards, raj
|
|||
|
|
|
|
This is called an anonymous inline function expression. It creates a function and gives you a reference to it, similar to if you had written:
The |
||||||
|
|
|
Be aware that not every browser support it, there's helper function |
||
|
|
|
|
gets called "for each" tag in "doc.tags" with the "tag" argument passed to the lambda function in question. |
||
|
|