Premium Only Content

Learn Functions in JavaScript | Day 34 | Arrow And Return Keyword | Web development course 2023
rrow functions are a concise way to write JavaScript functions. They were introduced in ES6 and offer several advantages over traditional function declarations, including:
Conciseness: They are written using shorter syntax.
Lexical this binding: They capture the this value of the enclosing scope.
Implicit return: They can implicitly return the value of the expression in their body.
Here's the basic syntax of an arrow function:
JavaScript
(parameters) => expression
Use code with caution. Learn more
The parameters and the expression are separated by an arrow (=>). If the function has no parameters, you can use empty parentheses.
Return Keyword:
The return keyword is used to explicitly return a value from a function. However, in arrow functions with a single expression in their body, the return keyword is implicit. This means you don't need to write it explicitly, and the expression's value will be the function's return value.
Here are some examples:
1. Single expression:
JavaScript
const double = (number) => number * 2;
const result = double(5); // result will be 10
Use code with caution. Learn more
2. Multiple expressions:
JavaScript
const isEven = (number) => {
if (number % 2 === 0) {
return true;
} else {
return false;
}
};
const number = 8;
const isEvenResult = isEven(number); // isEvenResult will be true
Use code with caution. Learn more
3. Implicit return:
JavaScript
const square = number => number ** 2;
const area = square(10); // area will be 100
Use code with caution. Learn more
Key Points:
Arrow functions are concise and have lexical this binding.
In arrow functions with a single expression, the return keyword is implicit.
You can still use the return keyword explicitly in arrow functions with multiple expressions.
-
17:47
Bearing
10 hours agoThe Most ANNOYING Podcast EVER 💥 ROSIE O’DONNELL & ABBIE CHATFIELD Whinge About EVERYTHING 🤡
5.24K21 -
LIVE
GritsGG
4 hours agoRanked Top 70! Most Wins in WORLD! 3744+!
53 watching -
1:52
NAG Daily
4 days agoTHE BIGGEST CREATOR COLLAB SHOW ON RUMBLE W/GreenMan Reports
4.81K2 -
LIVE
Tundra Tactical
2 hours agoProfessional Gun Nerd Plays Battlefield 6
154 watching -
55:25
Dad Saves America
6 hours ago $1.26 earnedWill China Overtake America? Balaji Srinivasan VS Steve Bannon on the Trade War
11.9K4 -
LIVE
Red Pill News
3 hours ago100’s of Billions In Gov Fraud Exposed on Red Pill News Live
4,050 watching -
1:05:40
vivafrei
4 hours agoWicked Witches of the Psaki! The Party of Criminals and Liars! LIVE FROM SWITZERLAND!
99.4K43 -
34:54
Michael Franzese
3 hours agoFormer Capo REVEALS: What My Life Was Really Like in the Mob
35.9K9 -
LIVE
LFA TV
20 hours agoLIVE & BREAKING NEWS! | WEDNESDAY 10/22/25
995 watching -
1:39:22
freecastle
7 hours agoTAKE UP YOUR CROSS- Now may the Lord of peace himself give you peace AT ALL TIMES in every way!
11.4K5