Introduction
Arrow functions let you write small functions quickly and clearly. They make your code shorter and easier to read.
When you want a quick function without writing the full function keyword.
When you need to keep the meaning of 'this' inside a function.
When writing simple one-line functions like math calculations or returning a value.
When using functions inside array methods like map, filter, or forEach.