In today’s blog, we will learn about Arrow Functions in ReactJS. Let us find out What are Arrow Functions and how they are used in ReactJS.
Contents
The arrow function is one of the features introduced in the ES6 version of javascript. It allows you to create functions in a cleaner way. The arrow function is a compressed and shorter version of the function expression. It requires fewer keystrokes by developers.
An arrow function expression is a compressed alternative to a regular function expression. But it also has some limitations in usage:
// function expression Let X = function (X,Y) { return X * Y } // using arrow function Let X = (X, Y) => X * Y ;
If a function doesn’t take any argument, then it should use empty parentheses.
Let greet = () => console.log(“Hello’); greet();
Note: This works only if the function has only one statement.
Arrow Function With Parameters:
hello = (val) => "Hello " + val; let names = ['John', 'Mac', 'Peter']; let lengths = names.map(name => name.length); console.log(lengths);
This was all about Arrow Function in ReactJS. To learn more about React, follow ReactJS blogs and stay updated. Share the article with your friends, and comment down your doubts or queries.
Happy Coding!
Generating image thumbnails is a common requirement in web applications, especially when handling media-heavy content.…
In today’s digital landscape, web application security is paramount. As a powerful PHP framework, Laravel…
October was an exciting month for MageComp! From significant updates across our Magento 2 extension…
In modern web development, seamless navigation and state management are crucial for delivering a smooth…
Magento Open Source 2.4.8 beta version released on October 8, 2024. The latest release of…
Hello Magento Friends, Creating catalog price rules programmatically in Magento 2 can be a valuable…