Arrow Functions in JavaScript | ES6 | The Complete JavaScript Course | Ep.40

preview_player
Показать описание


📖 Chapters
00:00 Arrow functions are another way to create functions in JavaScript
01:27 Arrow functions in JavaScript have different behavior than other function declarations.
03:45 Arrow function is a concise way to write functions using syntax.
05:18 Arrow functions in JavaScript can be written in a simplified, concise manner.
06:52 Arrow functions in JavaScript offer concise syntax for defining functions.
09:22 Arrow functions in JavaScript have different ways of defining parameters and using parentheses
11:14 Arrow functions can have optional parameters and need to be used appropriately
13:02 Create arrow functions with different syntax and parameter options.

Have any doubts? Join this Telegram group and ask your question. You can also share the projects that you make in this group.

Social Media

Music by geoffharvey from Pixabay
Рекомендации по теме
Комментарии
Автор

00:01 Arrow functions are another way to create functions in JavaScript
01:27 Arrow functions in JavaScript have different behavior than other function declarations.
03:45 Arrow function is a concise way to write functions using => syntax.
05:18 Arrow functions in JavaScript can be written in a simplified, concise manner.
06:52 Arrow functions in JavaScript offer concise syntax for defining functions.
09:22 Arrow functions in JavaScript have different ways of defining parameters and using parentheses
11:14 Arrow functions can have optional parameters and need to be used appropriately
13:02 Create arrow functions with different syntax and parameter options.
Crafted by Merlin AI.

AdarshSingh-hmss
Автор

let subtract = (a, b) => a + b;
let result = subtract(8, 4)
console.log(result)

manishagarwal
Автор

Could you please explain the differences between arrow functions and regular functions in JavaScript? Please include all key points, especially those relevant for an interview setting.

deepanshujangra
Автор

const add = (num1, num2) => num1 + num2;
console.log(add(8, 3));

Asadalicoder
Автор

Bhai samajh sab aa raha hai pr function mann se bnate time bna nahi paate toh confidence down ho jaata 😞

shobhitsharma
Автор

Hi Anurag This was an excellent explanation but I think it is not a complete explanation of the arrow function please include the concept of this keyword with the arrow function as well in this video

gulshanverma
Автор

ky interviewer itna deep m question puch te hai
ki scope ky hota hai global ... ky hota hai etc...??

ShiviShaw-cxsd
Автор

Bhai please suggest me what can do - bhaiya job mil ni Rahi h or ab konsi technology sikhe. Java, ,ya .Net or ak baat or bhaiya ke jo coching centre h Hyderabad me or Bengaluru me jo tranning dete h or placement bhi offer krte h ye sahi h
Ap bta sakte ho koi good institute jo achhe se training de or job bhi office kre please 🙏 Mai bahut prshan hu

devilmachine.
Автор

8:51
What is the short key for opening dev tools ?

Ketan.
Автор

sir
setTimeout((a, b) => {
a + b
})
ye error a raha hai

sanjitdey