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.
-
LIVE
Benny Johnson
2 hours ago🚨 JFK Assassination Files DEEP DIVE: CIA Cover-Up, Weather Control, Bioweapons, Israeli Nukes!?
9,372 watching -
LIVE
LFA TV
16 hours agoGUTTING THE GOVERNMENT! | LIVE FROM AMERICA 3.20.25 11AM
4,141 watching -
DVR
Bannons War Room
1 month agoWarRoom Live
7.67M1.52K -
1:22:36
theoriginalmarkz
3 hours agoCoffee with MarkZ. 03/20/2025
72.7K26 -
43:41
BonginoReport
6 hours agoWhat's Going on with College-Educated Women? (Ep.164) - 03/20/2025
134K201 -
8:54
Talk Nerdy Sports - The Ultimate Sports Betting Podcast
2 hours ago3/20/25 -March Madness Part 2: The Games We Missed—More Bets, More Chaos!
21.9K -
2:09:27
Matt Kohrs
13 hours agoStocks Fall Hard (The Fed Fake Out) || The MK Show
69.6K2 -
1:09:14
The Big Migâ„¢
16 hours agoSome Men Just Want To Watch The World Burn🔥
13.1K4 -
1:25:53
Dear America
12 hours agoTesla Attacks Increase In SHOCKING New Ways + Trump To Officially Close Dept. Of Education!
73.7K40 -
2:59:17
Wendy Bell Radio
7 hours agoTriggered By TESLA
120K58