Skip to content

Instantly share code, notes, and snippets.

@divyamamgai
Created December 5, 2019 17:05
Show Gist options
  • Save divyamamgai/93c1b55e7c38faa6f28e10df555da862 to your computer and use it in GitHub Desktop.
Save divyamamgai/93c1b55e7c38faa6f28e10df555da862 to your computer and use it in GitHub Desktop.
skope article sample.js
var a = 1;
(function () {
var b = 2;
console.log(b);
// FIXME: Unused function declarations are also counted.
function c() {
d = 3;
}
window.e = function () {
b++;
};
})();
function f() {
console.log("I'm too lazy to write a good example.");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment