Skip to content

Commit

Permalink
Merge pull request #3430 from garageScript/SlyBouhafs-patch-1
Browse files Browse the repository at this point in the history
Update map_reduce_and_filter_functions.mdx
  • Loading branch information
SlyBouhafs authored Jan 17, 2024
2 parents cd143b7 + 8a0fcce commit 5e6cfc2
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions content/lessons/js2/sublesson/map_reduce_and_filter_functions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1972,17 +1972,6 @@ Because map runs the functions really fast and returns immediately. In a race,
if all runners started immediately one after another, they would arrive at the
destination at around the same time.

```jsx
const friends = ['Tony Stark', 'Vision', 'Ultron'].reduce((a, b) => {
setTimeout(() => {
console.log('Greetings,', b)
}, 2000)
return a + b
}, '') // What is friends?

// What gets printed out into the console?
```

</Spoiler>

```jsx
Expand Down

1 comment on commit 5e6cfc2

@vercel
Copy link

@vercel vercel bot commented on 5e6cfc2 Jan 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.