Created
October 15, 2012 00:25
-
-
Save rodrigo-x/3890269 to your computer and use it in GitHub Desktop.
snippet - facade..
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Class = (function(){ | |
var _private = { | |
i: 0, | |
get: function(){ | |
console.log('current value:' + this.i); | |
}, | |
set: function(val){ | |
this.i = val; | |
}, | |
run: function(){ | |
console.log('running'); | |
}, | |
jump: function(){ | |
console.log('jumping'); | |
} | |
}; | |
return{ | |
facade: function(args){ | |
_private.set(args.val); | |
_private.get(); | |
if(args.run){ | |
_private.run(); | |
} | |
if(args.jump){ | |
_private.jump(); | |
} | |
} | |
} | |
}(Class)); | |
Class.facade({run: true, jump: false, val: 10}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment