-
-
Save austinpray/ab2615e21bdf8b228f05c3f804a60414 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