1 2 3 4 5 6 7 8 9 10 11 12 13
gczeal(7,1); function TestCase(n) { this.name = ''; this.description = ''; this.expect = ''; this.actual = ''; this.reason = ''; this.passed = ''; } function test() new TestCase; test(); Object.defineProperty(Object.prototype, "name", {}); test();