1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00
jashkenas--coffeescript/documentation/js/expressions_try.js

7 lines
135 B
JavaScript
Raw Normal View History

2010-12-23 12:41:42 -08:00
alert((function() {
2010-07-29 00:51:35 -04:00
try {
2010-11-21 12:38:27 -05:00
return nonexistent / void 0;
2010-07-29 00:51:35 -04:00
} catch (error) {
return "And the error is ... " + error;
}
2010-12-23 12:41:42 -08:00
})());