k-l-lambda's picture
updated node_modules
4cadbaf
raw
history blame
185 Bytes
/** the parent */
var box = {};
/** @namespace */
box.holder = {}
box.holder.foo = function() {
/** the counter */
this.counter = 1;
}
box.holder.foo();
print(box.holder.counter);