đź’ˇ HOMEWORK for next time: https://github.com/HackYourFuture-CPH/JavaScript/blob/main/javascript2/week3/homework.md
đź’Ş Prep for next session: https://github.com/HackYourFuture-CPH/JavaScript/blob/main/javascript3/week1/preparation.md
click
event on an element in JS?map
and forEach
methods?We can – give them a name
function myFunction () { … }
We can – leave them anonymous
We can – assign them to a variable
const myFunction = function () { … }
doSomethingWith(myFunction)
const myFunction = () => { … }
,
which would by default be anonymousWhy do we have some many options? → Sometimes having more options is convenient
Resources & exercises
Callback is just a function passed into another function as an argument
const handleTheClick = () => { … }
can be used as ….addEventListener("click", handleTheClick)
We don’t have to wait until we run further code
That’s sometimes called “Asynchronous JS”
const processTheHugeFile = (aFile) => { … }
…
getTheHugeFile_TakesVeryLong(processTheHugeFile)
⇒ we don’t want to wait before showing the message
showMessageToUser("getting the huge file now")
…
function getTheHugeFile_TakesVeryLong(callback) { … // Done callback(theFile) // this calls processTheHugeFile }
The setTimeout
function can call your callback after a specific amount of milliseconds
Resources & exercises
Key takeaways:
map
, forEach
, filter
, sort
Time to catch up on homework + questions
Resources & exercises