Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1e57bcd1acdd63aa6ea16e750200e3d0b7cd99a6 (plain) (blame)
1
2
3
4
5
6
function foo() {
	 this.id = 0;
}
var obj = {};
obj["p3"] = new foo();
obj["p3"].

Back to the top