InterviewSolution
Saved Bookmarks
| 1. |
Are Namespaces Are There In Javascript? |
|
Answer» A namespace is a container and ALLOWS you to bundle up all your FUNCTIONALITY USING a unique name. In JavaScript, a namespace is really just an object that you’ve attached all further methods, properties and objects. But it is not always NECESSARY to use namespace. A namespace is a container and allows you to bundle up all your functionality using a unique name. In JavaScript, a namespace is really just an object that you’ve attached all further methods, properties and objects. But it is not always necessary to use namespace. |
|