MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following code snippet :var scope = "global scope";function checkscope() {var scope = "local scope";function f(){return scope;}return f;What is the function of the above code snippet? |
| A. | eturns value null |
| B. | eturns exception |
| C. | eturns the value in scope |
| D. | one of the mentioned |
| Answer» D. one of the mentioned | |