Skip to content

Commit a396a49

Browse files
Power Constructors in Code, Step 3.
1 parent a83f795 commit a396a49

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

power_constructors.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,9 @@ Power Constructors
1919
function myPowerConstructor(x) {
2020
var that = otherMaker(x);
2121
var secret = f(x);
22+
that.privilegedMethod = function () {
23+
// secret;
24+
// x;
25+
// that;
26+
};
2227
};

0 commit comments

Comments
 (0)