Consider the following code snippet
function printprops(o)
{
Home | Discussion Forum
{
Home | Discussion Forum
Consider the following code snippet
function printprops(o)
{
for(var p in o)
console.log(p + ": " + o[p] + "\n");
}
What will the above code snippet result ?
Answer : B
View More Related Question
1) The function definitions in JavaScript begins with
View Answer
2) Consider the following code snippet :
function constfuncs()
{
var funcs = [];
for(var i = 0; i < 10; i++)
funcs[i] = function()
{
return i;
};
return funcs; }
var funcs = constfuncs();
funcs[5]()
What does the last statement return ?
3) Consider the following code snippet :
var grand_Total=eval("10*10+5");
The output for the above statement would be :
4) For the below mentioned code snippet:
var o = new Object();
The equivalent statement is:
5) Which is an equivalent code to invoke a function m of class o that expects two arguments x and y?