this in arrow functions

Arrow Functions vs Normal Functions

Hey everyone 👋🏻, In this article, let us understand the differences between Arrow Functions and Normal Functions. Arrow Functions vs Normal Functions We know that we can define JavaScript functions in many ways: The first way is by making use of the function keyword. So as an example, consider this piece of code : function greet(name) { return…