- JS Introduction
- JS Introduction
- JS Comments
- JS Variables
- JS Datatypes
- JS Operators
- JS Type Conversions
- JS Control Flow
- JS Comparisons
- JS If else
- JS If else Ladder
- JS Ternary Operator
- JS Switch
- JS For Loop
- JS For In
- JS For Of
- JS While
- JS Do While
- JS Break & Continue
- JS Functions
- JS Function Declaration
- JS Function Parameters
- JS Return Statement
- JS Function Expressions
- JS Anonymous Functions
- JS Objects
- JS Objects
- JS Object Methods
- JS Object Constructors
- JS Object Destructuring
- JS Object Prototypes
- JS Map, Filter & Reduce
- JS ES6
- JS ES6
- JS let and const
- JS Arrow Functions
- JS Template Literals
- Destructuring Assignment
- JS Spread Operator
- JS Default Parameters
- JS Classes
- JS Inheritance
- JS Map
- JS Set
- JS Async
- JS Callbacks
- JS Asynchronous
- JS Promises
- JS Async/Await
- JS HTML DOM/BOM
- JS Document Object
- JS getElementbyId
- getElementsByClassName
- JS getElementsByName
- getElementsByTagName
- JS innerHTML
- JS outerHTML
- JS Window Object
- JS History Object
- JS Navigator Object
- JS Screen Object
JavaScript Arrow Function
Concise Syntax:
- Arrow functions provide a more concise syntax for defining functions.
- Especially useful for short, one-line functions.
Lexical this:
- Arrow functions inherit this from the enclosing scope, avoiding issues with traditional function expressions.
No arguments Object:
- Arrow functions do not have their own arguments object.
No Binding of this, super, new.target, and arguments:
- Arrow functions do not bind their own this, super, new.target, or arguments, making them suitable for certain scenarios.
Example: Basic Arrow Function
const add = (a, b) => a + b;
Example: Arrow Function with Implicit Return
const square = x => x * x;
Example: Arrow Function with No Parameters
const greet = () => "Hello, World!";
Example: Arrow Function in Array map
const numbers = [1, 2, 3];
const doubled = numbers.map(num => num * 2);
Key Points
- Arrow functions provide a shorter syntax for writing functions.
- They inherit this from the surrounding scope, making them suitable for certain use cases.
- Ideal for concise and short functions, especially in functional programming scenarios.