Created
January 24, 2016 03:04
-
-
Save stephenhandley/6ad2db64e911ca0fa999 to your computer and use it in GitHub Desktop.
try catch expression value coffeescript
This file contains hidden or 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
ok: wow | |
nok: [Error: honkytonk] |
This file contains hidden or 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
ok = try | |
'wow' | |
catch error | |
error | |
console.log('ok: ', ok) | |
nok = try | |
throw new Error('honkytonk') | |
catch error | |
error | |
console.log('nok: ', nok) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment