Well while studying how JavaScript behind the scenes work I read that arrow functions does not have their own 'this' keyword nor their own parameters.
//MAIN PROBLEM However, you can access the arguments without any problem. (when I saw the 'this' behavior then I assumed it's gonna be the same for the arguments and so the arguments value must be the value of the arguments of the parent function.)
Please someone explain how this is possible ???? that arrow functions could still access it's arguments even though "Arrow functions don't have their own arguments".
I checked it in code and it was true for the 'this' keyword when used inside the arrow function the value of 'this' is going to be the 'this' from it's parent function.