mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
7 lines
133 B
JavaScript
7 lines
133 B
JavaScript
alert(function() {
|
|
try {
|
|
return nonexistent / void 0;
|
|
} catch (error) {
|
|
return "And the error is ... " + error;
|
|
}
|
|
}()); |