Skip to content

Instantly share code, notes, and snippets.

@wilk
Created November 8, 2017 13:34
Show Gist options
  • Save wilk/956d105d92ed922ee7a7de6247c2f587 to your computer and use it in GitHub Desktop.
Save wilk/956d105d92ed922ee7a7de6247c2f587 to your computer and use it in GitHub Desktop.
throwing functions
try {
throw text => console.log(text)
} catch (fn) {
fn('hello from catch') // it prints out "hello from catch"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment