목차
- 제목: Say bye bye to bad javascript practices
- 출처:
- 요약:
- 1. Using var instead of let and const
- 2. Using comments to explain the code
- 3. Using == instead of ===
- 4. Forgetting to use optional chaining
- 5. Not using magic strings and magic numbers
- 6. Improperly handling API call errors
- 7. Using an object as a single parameter
- 8. Forgetting the power of abbreviations
제목: Say bye bye to bad javascript practices
출처:
Say bye bye to bad javascript practices
When we take our first steps into the wonderful world of programming, we get to see for ourselves what it does for millions of people. It’s…
blog.gogrow.dev
요약:
1. Using var instead of let and const
2. Using comments to explain the code
3. Using == instead of ===
4. Forgetting to use optional chaining
5. Not using magic strings and magic numbers
6. Improperly handling API call errors
7. Using an object as a single parameter
8. Forgetting the power of abbreviations
'다른 블로그의 유용한 글' 카테고리의 다른 글
브라우저에서 url을 입력하면 벌어지는 일 (0) | 2023.01.09 |
---|