jashkenas--coffeescript/documentation/js/expressions_try.js

12 lines
205 B
JavaScript

// Generated by CoffeeScript 1.11.0
var error;
alert((function() {
try {
return nonexistent / void 0;
} catch (error1) {
error = error1;
return "And the error is ... " + error;
}
})());