T
Q. The output for the following code snippet would most appropriately be
var a=5 , b=1 var obj = { a : 10 } with(obj) { alert(b) }
The interpreter checks obj for property b, fails and takes it from outside of with.
You must be Logged in to update hint/solution
Q. If var A={B:3, C:5}, how to use the delete operator to delete one of the properties of an object.
Q. What is the purpose of creating a data frame?
Q. When interpreter encounters an empty statements, what it will do:
Q. A _________ is a group of reusable code which can be called anywhere in your program.
Q. Which of the following options would be the correct output for the given JavaScript code?
Q. Java Script Variable should be Case ___________.
Q. In JavaScript, what will be used for calling the function definition expression
Q. The statement is an example of:
Q. What are the three important manipulations for a loop on a loop variable?
Discusssion
Login to discuss.