Skip to content

Instantly share code, notes, and snippets.

@stephenhandley
Created January 24, 2016 03:04
Show Gist options
  • Save stephenhandley/6ad2db64e911ca0fa999 to your computer and use it in GitHub Desktop.
Save stephenhandley/6ad2db64e911ca0fa999 to your computer and use it in GitHub Desktop.
try catch expression value coffeescript
ok: wow
nok: [Error: honkytonk]
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