1.

What would be the most appropriate output for the following code snippet?var p=15 , q=10var object = { p : 20 }with(object) { alert(q)}

A. 20
B. Error
C. 15
D. 10
E. None of these
Answer» E. None of these


Discussion

No Comment Found