Fuction Scoping 1

Explaining fuctional scopes and uses

by nirus

JavaScript

//Press F12 to see the result on Google Chrome or Firefox
(function () {
    "use strict";
    console.log(this.scope.pipe);
}).bind(new function () {
    this.scope = {};
    this.scope.pipe = "Wow Awesome!";
})();