Files
coffeescript/documentation/js/expressions_try.js
2015-05-14 11:24:39 +02:00

12 lines
204 B
JavaScript

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