Files
coffeescript/documentation/js/expressions_try.js
2010-02-24 18:27:10 -05:00

10 lines
181 B
JavaScript

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