Skip to content

Commit 73c8098

Browse files
committed
minor fixes
1 parent ea76bb6 commit 73c8098

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

JavaScript-Quick-Reference.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -999,7 +999,7 @@ fetchData()
999999
## 6.3 HANDLING ASYNCHRONOUS OPERATIONS
10001000
Strategies for managing asynchronous operations in JavaScript.
10011001

1002-
### Asynchronous Operations:
1002+
### Asynchronous Operations
10031003
Asynchronous operations are tasks which occur independently of the main program flow, such as network requests, timers, and event handling.
10041004
Asynchronous operations in JavaScript often involve tasks that take time to complete. Examples include:
10051005
- Fetching data from a remote server
@@ -1351,9 +1351,9 @@ const person = {
13511351
---
13521352

13531353
## 9.1 TIPS AND BEST PRACTICES
1354-
Tips for cleaner, more maintainable, and efficient JavaScript code.
1354+
Tips for cleaner, more efficient and maintainable JavaScript code.
13551355

1356-
### 1. Use Descriptive Variable and Function Names**
1356+
### 1. Use Descriptive Variable and Function Names
13571357
- Choose meaningful and descriptive names for variables and functions to improve code readability.
13581358
- Avoid overly abbreviated or cryptic names.
13591359

@@ -1393,6 +1393,7 @@ Tips for cleaner, more maintainable, and efficient JavaScript code.
13931393
- Follow industry best practices and consider performance optimizations.
13941394

13951395

1396+
13961397
### Further Learning Resources
13971398

13981399
- [MDN Web Docs (Mozilla Developer Network)](https://developer.mozilla.org/en-US/docs/Web/JavaScript)

0 commit comments

Comments
 (0)