14 lines
185 B
JavaScript
Raw Normal View History

2010-05-26 15:34:42 -07:00
/** the parent */
var box = {};
/** @namespace */
box.holder = {}
box.holder.foo = function() {
/** the counter */
this.counter = 1;
}
box.holder.foo();
print(box.holder.counter);