Skip to content

Instantly share code, notes, and snippets.

@arumons
Created February 25, 2011 14:40
Show Gist options
  • Save arumons/843868 to your computer and use it in GitHub Desktop.
Save arumons/843868 to your computer and use it in GitHub Desktop.
コールバック関数中の例3
function foo(fn) {
process.nextTick(fn);
}
var count = 0;
foo(function() {
try {
console.log(count++);
throw "test";
} catch (e) {
//キャッチ可能
process.nextTick(arguments.callee);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment