What will be the step of the interpreter in a jump statement when an exception i

Home | Discussion Forum

What will be the step of the interpreter in a jump statement when an exception is thrown?

View More Related Question

2) Consider the following code snippet

function printArray(a)
{
var len = a.length, i = 0;
if (len == 0)
console.log("Empty Array");
else
{
do
{
console.log(a[i]);
}
while (++i < len);
}
}

What does the above code result?

3) What will happen if the body of a for/in loop deletes a property that has not yet been enumerated?

4) What will be the step of the interpreter in a jump statement when an exception is thrown?

5) Consider the following code snippet

function f(o)
{
if (o === undefined)
debugger;
}

What could be the task of the statement debugger?

UP Gk Online Test

taiyari24hour.com

Study 2 Online Says....
Kindly log in or signup.