Skip to content

Commit

Permalink
Fixed a typo that causes reference error
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksandar15 committed Dec 15, 2024
1 parent 802978f commit b4b8276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/en-us/glossary/function/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function loop(x) {
// Arrow function
const loop2 = (x) => {
if (x >= 10) return;
loop(x + 1);
loop2(x + 1);
};
```

Expand Down

0 comments on commit b4b8276

Please sign in to comment.