mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-28 21:00:56 +08:00
fix(curriculum): add missing section titles in JavaScript review (#64598)
Co-authored-by: Jeevankumar <jeeevnkumar2003@gmail.com>
This commit is contained in:
parent
4e2997d4e3
commit
c07d09fa68
@ -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.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user