What the technical advantages of using arrow functions over normal functions apart from syntax?
1. Syntax
2. Arguments binding
Arrow functions do not have an arguments
binding.
3. Use of this keyword
Unlike regular functions, arrow functions do not have their own this
.