javascript cette fonction flèche intérieure

const greet = () => {
    console.log(this);
}
greet(); // Window {...}
SAMER SAEID