function DivideTwoNumbers(numerator, denominator, unsedparameter ) { return numerator / denominator; }
function a(a,b){return a/b}
function foo() { try { // do something that might error } catch(e) { // handle the error } alert(e); }
var e = "outer"; function foo() { try { // do something that might error } catch(e) { // handle the error } alert(e); }
Possible coding error: Ambiguous catch identifier 'e'. Cross-browser behavior difference. At line 8, col 10-11: e
function foo(p) { p[0].style.display = "block"; p[1].style.display = "block"; p[2].style.display = "block"; p[3].style.display = "block"; p[4].style.display = "block"; }