mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
13 lines
185 B
JavaScript
13 lines
185 B
JavaScript
/** the parent */
|
|
var box = {};
|
|
|
|
/** @namespace */
|
|
box.holder = {}
|
|
|
|
box.holder.foo = function() {
|
|
/** the counter */
|
|
this.counter = 1;
|
|
}
|
|
|
|
box.holder.foo();
|
|
print(box.holder.counter);
|