Created
October 28, 2012 20:05
-
-
Save tdantas/3969702 to your computer and use it in GitHub Desktop.
programming async trick.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Question: | |
// Environment: NodeJS | |
// Lets suppose that you have a collection of items, and your function must persist all items using the | |
//database.insert(item, callback ) function. When you finish the task, you should call the callback function. | |
// If one item raise a error, the callback(err) must be called and never call the callback anymore. | |
function saveBulk(items, callback) { | |
// Your code here | |
} | |
saveBulk([ {name:"thiago"}, {name: "r42"}, { name: "rulio"} , { name: "nodejs"} ], function(err) { | |
console.log("Ok"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment