fix(curriculum): add missing section titles in JavaScript review (#64598)

Co-authored-by: Jeevankumar <jeeevnkumar2003@gmail.com>
This commit is contained in:
Jeevankumar S 2025-12-17 16:30:47 +05:30 committed by GitHub
parent 4e2997d4e3
commit c07d09fa68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2729,6 +2729,7 @@ class Car {
console.log(Car.numberOfWheels);
```
## Recursion
- Recursion is programming concept that allows you to call a function repeatedly until a base-case is reached.
@ -2799,6 +2800,8 @@ const curriedAverage = a => b => c => (a + b + c) / 3;
- While currying can lead to more flexible and reusable code, it can also make code harder to read if overused.
## Asynchronous JavaScript
- **Synchronous JavaScript** is executed sequentially and waits for the previous operation to finish before moving on to the next one.
- **Asynchronous JavaScript** allows multiple operations to be executed in the background without blocking the main thread.
- **Thread** is a sequence of instructions that can be executed independently of the main program flow.