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

10 lines
181 B
JavaScript
Raw Normal View History

2010-01-05 03:19:45 +00:00
(function(){
alert((function() {
try {
return nonexistent / undefined;
} catch (error) {
return "And the error is ... " + error;
2010-01-05 03:19:45 +00:00
}
2010-01-25 05:14:00 +00:00
}).call(this));
2010-02-24 23:27:10 +00:00
})();