Files
coffeescript/documentation/js/expressions_try.js
2010-01-25 00:14:00 -05:00

9 lines
180 B
JavaScript

(function(){
alert((function() {
try {
return nonexistent / undefined;
} catch (error) {
return "And the error is ... " + error;
}
}).call(this));
})();