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. |
|