Back to Developer Roadmap

Arrow Functions

src/data/roadmaps/javascript/content/[email protected]

4.0398 B
Original Source

Arrow Functions

Arrow Function is a new way of creating functions with the '=>' operator with a shorter syntax.

Example

js
const sayHello = () => {
    console.log(`Hello from Arrow Function !`);
}

Visit the following resources to learn more: