scope

by alekskorovin

JavaScript

//Closures

(function() {
    'use strict';
    
    var a = window.b = 5;
})();

console.log(b);