|
1 | 1 | # clean-code-javascript
|
2 | 2 |
|
3 | 3 | ## Table of Contents
|
4 |
| - 0. [Introduction](#introduction) |
5 |
| - 1. [Variables](#variables) |
6 |
| - 2. [Functions](#functions) |
7 |
| - 3. [Objects and Data Structures](#objects-and-data-structures) |
8 |
| - 4. [Classes](#classes) |
9 |
| - 5. [Testing](#testing) |
10 |
| - 6. [Concurrency](#concurrency) |
11 |
| - 7. [Formatting](#formatting) |
12 |
| - 8. [Comments](#comments) |
| 4 | + 1. [Introduction](#introduction) |
| 5 | + 2. [Variables](#variables) |
| 6 | + 3. [Functions](#functions) |
| 7 | + 4. [Objects and Data Structures](#objects-and-data-structures) |
| 8 | + 5. [Classes](#classes) |
| 9 | + 6. [Testing](#testing) |
| 10 | + 7. [Concurrency](#concurrency) |
| 11 | + 8. [Formatting](#formatting) |
| 12 | + 9. [Comments](#comments) |
13 | 13 |
|
14 | 14 | ## Introduction
|
15 | 15 | ** |
| 1608 | + |
1558 | 1609 | ## **Concurrency**
|
1559 | 1610 | ### Use Promises, not callbacks
|
1560 | 1611 | Callbacks aren't clean, and they cause excessive amounts of nesting. With ES6,
|
|
0 commit comments