9515265747139524a431ac029ce9a06fc49d0a0c.svn-base 226 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 function bar(a) { try { foo(); } catch(e) { alert("Exception caught (foo not defined)"); } alert(a); // 10 in FF, "[object Error]" in IE } bar(10);