jashkenas--coffeescript/documentation/examples/expressions_try.coffee

7 lines
93 B
CoffeeScript

alert(
try
nonexistent / undefined
catch error
"And the error is ... #{error}"
)