Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save stefensuhat/7698534acced24da3d151b4475e2446c to your computer and use it in GitHub Desktop.

Select an option

Save stefensuhat/7698534acced24da3d151b4475e2446c to your computer and use it in GitHub Desktop.
Get uppercase name
// bad code
function name(value) {
return value.toUppercase();
}
//good code
function getUppercaseName(value){
return value.toUppercase();
}
//better code
//this function is use for convert name to uppercase
function getUppercaseName(value){
return value.toUppercase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment