Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Private Global Scope

(function() {
    "use strict";

    var me = 'Foo';
    var greet = function (name) {
        return 'Hello ' + name;
    }
    var res = greet(me);

    console.log(res);  // Hello Foo
}())