Pregunta de entrevista de Infrrd

What is the difference between a standard function() and an arrow function (JavaScript)

Respuestas de entrevistas

Anónimo

8 mar 2020

Arrow function doesn't have access to this and arrow function doesn't have arguments object inside a function, where standard function have

2

Anónimo

22 sept 2020

Regular have the argument object, arrow doesn't have.

1