Skip to content

Instantly share code, notes, and snippets.

@hensondev
Last active February 17, 2017 00:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save hensondev/68c3c7c880e8969acc472ba1063f19c6 to your computer and use it in GitHub Desktop.
Save hensondev/68c3c7c880e8969acc472ba1063f19c6 to your computer and use it in GitHub Desktop.
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