MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following code snippetfunction printprops(o){for(var p in o)console.log(p + ": " + o[p] + "n");}What will the above code snippet result ? |
| A. | rints the contents of each property of o |
| B. | eturns undefined |
| C. | ll of the mentioned |
| D. | one of the mentioned |
| Answer» C. ll of the mentioned | |