Skip to content

Instantly share code, notes, and snippets.

@wch
wch / mynamespace.js
Last active March 28, 2021 14:07
Namespace example in Javascript. This also demonstrates the module pattern.
// mynamespace is an object to use as a namespace
mynamespace = (function() {
// Variables in the namespace
var mynamespace = {
foo: "Yes, this is foo."
};
// "Public" methods for the namespace
mynamespace.fooTwo = function() {