A
Q. 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 ?
- Correct Answer - Option(B)
- Views: 21
- Filed under category JavaScript
- Hashtags:
Discusssion
Login to discuss.