Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 734 Bytes

does_javascript_supports_namespace.md

File metadata and controls

19 lines (13 loc) · 734 Bytes

Does JavaScript support namespaces?

JavaScript does not have a built-in namespace feature like some other programming languages. However, you can create a namespace-like structure using objects or modules.

Example using objects as namespaces:

const MyNamespace = {
  myFunction: function() { console.log('Hello!'); },
  myVariable: 42
};
MyNamespace.myFunction(); // 'Hello!'

Tags: intermediate, JavaScript, namespaces

URL: https://www.tiktok.com/@jsmentoring/photo/7464760458570911008