MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following code snippet. What will the code snippet result ? namespace McqsMentorConsoleApplication function printprops(o) { for(var p in o) console.log(p + ": " + o[p] + "n"); } |
| A. | Prints the contents of each property of o |
| B. | Returns undefined |
| C. | All of the mentioned |
| D. | None of the mentioned |
| Answer» C. All of the mentioned | |