Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Week3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,9 @@ Last week you learned about Promises. To recap, here's what we learned: in order
At first we learned about callbacks, as a way to do this:

```js
const someFunc(param1, callback) {
const callback(param1);
return;
function someFunc(param1, callback) {
const result = callback(param1);
return result;
}
```

Expand Down