Last active
February 17, 2017 00:28
-
-
Save hensondev/68c3c7c880e8969acc472ba1063f19c6 to your computer and use it in GitHub Desktop.
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 get = function (name) { | |
return "public String get" + name.charAt(0).toUpperCase() + name.slice(1,name.length) + "() {\n \treturn this." + name + ";" + "\n}" | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment