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

Callback

function call_back(cb) {
    console.log("Start call_back");
    cb();
    //console.log("End call_back");
}

function helper() {
    console.log("In helper function");
}

call_back(function() {
    console.log("Inside anonymous function");
})

call_back(helper);