Infrrd interview question

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

Interview Answers

Anonymous

Mar 8, 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

Anonymous

Sep 22, 2020

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

1