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

6 lines
92 B
CoffeeScript
Raw Normal View History

2010-01-05 03:19:45 +00:00
alert(
try
nonexistent / undefined
catch error
"And the error is ... " + error
2010-01-05 03:19:45 +00:00
)