How to use Arrow Functions in JavaScript
Table of Contents
EcmaScript 6 introduced a new syntax for defining functions, called arrow functions.
Arrow functions are a more concise way of writing functions, and they have some interesting features that make them more flexible than regular functions.
In this post, we'll learn about arrow functions in JavaScript, and how to use them.
How to define arrow functions
As mentioned before, arrow functions are a newer way of defining functions in JavaScript.
First, let's look at the traditional way of defining a function:
JAVASCRIPTfunction add(a, b) {
return a + b;
}
Now, let's look at the same function defined as an arrow function:
JAVASCRIPTconst add = (a, b) => {
return a + b;
};
In essence, the word function
is replaced with an arrow =>
to signify that this is a function.
A key difference is that the first example is defining a function, while the second example is defining a variable that is assigned a function.
This is important to note, because arrow functions are not hoisted like regular functions.
An interesting feature of arrow functions is that they can be defined without the curly braces, if the function only has one statement.
JAVASCRIPTconst add = (a, b) => a + b;
You can use it like any other function:
JAVASCRIPTconst add = (a, b) => a + b;
const sum = add(1, 2);
console.log(sum);
BASH3
Conclusion
In this post, we learned about arrow functions in JavaScript.
Use arrow functions if you're looking for a more concise way of defining functions and don't need hoisting.
Thanks for reading!
- Managing PHP Dependencies with Composer
- Getting Started with Electron
- Git Tutorial: Learn how to use Version Control
- How to deploy a .NET app using Docker
- How to build a Discord bot using TypeScript
- How to deploy a PHP app using Docker
- Getting Started with Handlebars.js
- Creating a Twitter bot with Node.js
- Building a Real-Time Note-Taking App with Vue and Firebase
- Getting Started with Vuex: Managing State in Vue
- Using Axios to Pull Data from a REST API
- How To Create a Modal Popup Box with CSS and JavaScript