Skip to content

Instantly share code, notes, and snippets.

@artemhp
Created August 15, 2019 18:17
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 artemhp/4d7cb4cad231c6dcccfe262b017c623c to your computer and use it in GitHub Desktop.
Save artemhp/4d7cb4cad231c6dcccfe262b017c623c to your computer and use it in GitHub Desktop.
exposing-variables.js
(function () {
var privateVariable = 'a';
window.publicVariable = 'b';
})(window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment