Skip to content

Instantly share code, notes, and snippets.

@leegeunhyeok
Created February 24, 2020 05:46
Show Gist options
  • Save leegeunhyeok/26aa9365905bcec891b9ada0b963ce6e to your computer and use it in GitHub Desktop.
Save leegeunhyeok/26aa9365905bcec891b9ada0b963ce6e to your computer and use it in GitHub Desktop.
What is self in Javascript?
// var myVariable = 10;
window.myVariable = 10;
function myFunc () {
console.log(myVariable);
}
// 10
myFunc();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment