Javascript: Private parameters
function myPowerConstructor(x) { var that = otherMaker(x); var secret = f(x); that.priv = function() { ... secret x that .... }; return that; }