Files
coffeescript/documentation/js/expressions_try.js
2010-04-11 17:57:29 -04:00

10 lines
172 B
JavaScript

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