have a initUrl, its an article which contains next blog, and defind function getNextUrl(url, callback(err, nextUrl)), want to get the next 100th url.
In stormjs (developing https://github.com/guileen/stormjs/issues/1), it write as
var url = initUrl;
for(var i=0; i<100; i++){
url = getNextUrl(url, _);
}
console.log(url);
but what the best output should be, I want to know how noders write this code without 3rd module.
_is some kind of magic flow control thing.