Skip to content

Instantly share code, notes, and snippets.

@felixge
Created June 29, 2010 22:51
Show Gist options
  • Save felixge/457949 to your computer and use it in GitHub Desktop.
Save felixge/457949 to your computer and use it in GitHub Desktop.
function a() {
setTimeout(b, 10);
}
function b() {
throw new Error('i forgot');
}
a();
demo.js:6
throw new Error('i forgot');
^
Error: i forgot
at Timer.b [as callback] (demo.js:6:9)
at node.js:228:9
@Lucifer007-max
Copy link

@ # @Uploading 975491721734992.png…

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment