JavaScript the Hard Parts: Callbacks & Higher Order Functions

preview_player
Показать описание
During this online workshop recording, Katrina will explore Callbacks and Higher Order Functions and go under-the-hood of JavaScript, so you can confidently tackle new problems and work through blocks.

We'll cover:
- Building functions like map, reduce, and filter from scratch
- Using higher order functions to keep code clean even in complex situations
- How to diagram through higher order functions and callbacks scenarios

Stay connected to our community!

Follow us to stay updated!

#learntocode #javascript #programminglanguage #callbacks #higheroderfunctions
Рекомендации по теме
Комментарии
Автор

Katrina, you're fantastic teacher ! thank you!

sonnayakanareika
Автор

loved the way she explained the logic!

hananfadah
Автор

SHE IS A REALLY REALLY GOOD TEACHER 👏🏾

ShootYourShotApp
Автор

Such fantastic instruction, and great job by all the participants!

devsthefourth
Автор

Katrina is amazing! She teaches the Central Immersive program.

ksecha
Автор

Callback functions begin at the 1 hour and 25-minute mark

m.ardaeren
Автор

1hr 28mins we name it instructions for readability

mcdthedev
Автор

const array = [1, 2, 3];
Const result = array.map((num) => num*2);
Console.log(result);
As mentioned, the built-in map method is a higher order function, passing in an anonymous function.
Can anyone help me understand if num is the callback function's parameter or argument?

ee-ting