5.       :<br><br>a = {x: 10, y:15};<br>a.method = function(arg){<br>   with(this){<br>      trace("with(this): x = " + x);<br>      trace("with(this): eval(arg) = " + eval(arg));<br>   }<br>   trace("eval(arg) = " + eval(arg));<br>}<br>a.method("y");
A) with(this): x = 1<br>with(this): eval(arg) = 15<br>eval(arg) =*0
B) with(this): x = 10<br>with(this): eval(arg) = 15<br>eval(arg) =1*0
C) with(this): x = 10<br>with(this): eval(arg) = 15<br>eval(arg) =15*0
D) with(this): x = 10<br>with(this): eval(arg) = 15<br>eval(arg) =20*0
E) with(this): x = 10<br>with(this): eval(arg) = 15<br>eval(arg) =*10
