Skip to content

Instantly share code, notes, and snippets.

@icarcal
Last active April 30, 2018 20:45
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 icarcal/9184ae3ab7bdb4e6e04ef810b5ecbdcd to your computer and use it in GitHub Desktop.
Save icarcal/9184ae3ab7bdb4e6e04ef810b5ecbdcd to your computer and use it in GitHub Desktop.
global this
var rick = 'Rick';
var morty = 'Morty';
function rickAndMorty() {
console.log(`My favourite show is ${this.rick} & ${this.morty}`)
}
rickAndMorty()
// My favourite show is Ricky & Morty
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment