Skip to content

Commit

Permalink
added missing function chapters
Browse files Browse the repository at this point in the history
  • Loading branch information
sumn2u committed Mar 26, 2024
1 parent e598231 commit 2f5f458
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions en/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@
- [Do...While](loops/dowhile.md)
- [Functions](functions/README.md)
- [Higher Order Functions](functions/higher-order.md)
- [Recursive Functions](functions/recursive-functions.md)
- [Closures](functions/closures.md)
- [Set Interval](functions/set-interval.md)
- [Set Timeout](functions/set-timeout.md)
- [Objects](objects/README.md)
- [Properties](objects/properties.md)
- [Mutable](objects/mutable.md)
Expand Down
3 changes: 1 addition & 2 deletions en/functions/closures.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
chapter: [chapter number]
pageNumber: [page number]
chapter: 8
description: Closures are a JavaScript concept that allows functions to access and remember variables from their containing scope, even after the outer function has finished running. They're vital for data encapsulation, private variables, and various design patterns in JavaScript. Closures enhance code flexibility and maintainability.
---

Expand Down
4 changes: 2 additions & 2 deletions en/functions/recursive-functions.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
title: Recursive Functions in JavaScript
chapter: 8
description: An explanation of recursive functions in JavaScript.
---

# Recursive Functions in JavaScript
# Recursive Functions

In JavaScript, a recursive function is a function that calls itself in order to solve a problem. Recursion is a powerful concept that can be used to solve complex problems by breaking them down into smaller, more manageable subproblems. This document provides an overview of recursive functions in JavaScript, their syntax, common use cases, and best practices.

Expand Down

0 comments on commit 2f5f458

Please sign in to comment.