0
Pls what is the difference between arrow function and regular function ??
3 Answers
+ 1
the main difference is that âfunctionâ supports procedural and object oriented programming, so you can use the âthisâ keyword with it, whereas arrow functions is geared towards functional programming, so doesnt support âthisâ keyword.
0
Thanks