Created
January 13, 2016 08:52
-
-
Save karenpeng/1a8e6906813dbb8ae6c6 to your computer and use it in GitHub Desktop.
This file contains 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
function A(){ | |
var _private = 0; | |
this.getter = function(){ | |
return _private; | |
} | |
this.setter = function(val){ | |
_private = val; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment