Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save phillypb/bcae22a54e7b0910f0dab274089b3be4 to your computer and use it in GitHub Desktop.

Select an option

Save phillypb/bcae22a54e7b0910f0dab274089b3be4 to your computer and use it in GitHub Desktop.
function toUpperCase() {
// lowercase text to convert
var lower = 'hello';
// apply uppercase method
var upper = lower.toUpperCase();
// log output
Logger.log(upper);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment