InterviewSolution
Saved Bookmarks
| 1. |
What are Global objects, and how do you use it in node JS? |
|
Answer» Global objects are those who provide variables and functions that are available anywhere within the code. By default, they are those objects which are BUILT into the language or the environment. All the properties of Global Objects can be accessed directly in node.js USING the window. Example |
|