JavaScript esta função interna
function greet() {
// this inside function
// this refers to the global object
console.log(this);
}
greet(); // Window {}
SAMER SAEID