Skip to content

Instantly share code, notes, and snippets.

@40thieves
Created February 12, 2019 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 40thieves/c4893b1faf53cda77eba966180018252 to your computer and use it in GitHub Desktop.
Save 40thieves/c4893b1faf53cda77eba966180018252 to your computer and use it in GitHub Desktop.
/*
* Example 1
*/
function example1() {
return "Ali".ToUpperCase();
}
console.log(example1());
/*
* Example 2
*/
function example2() {
return "Ali".toUpperCase(
}
console.log(example())
/*
* Example 3
*/
function example3() {
"Ali".toUpperCase();
}
console.log(example3());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment