Created
January 4, 2019 20:10
-
-
Save phillypb/bcae22a54e7b0910f0dab274089b3be4 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
| 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