JavaScript Эта внутренняя функция

function greet() {

    // this inside function
    // this refers to the global object
    console.log(this);
}

greet(); // Window {}
SAMER SAEID