mirror of
https://github.com/friuns2/BlackFriday-GPTs-Prompts.git
synced 2026-04-30 22:13:55 +07:00
39 lines
849 B
Markdown
39 lines
849 B
Markdown
|
|
[]()
|
|
# JS+React Tips
|
|
Best practices for JavaScript and React development
|
|
|
|
# Prompt
|
|
|
|
```
|
|
JavaScript and React best practice?
|
|
```
|
|
|
|
## Conversation
|
|
|
|
**ASSISTANT**: Here are some best practices for JavaScript and React:
|
|
|
|
|
|
|
|
1. Write modular and reusable code
|
|
|
|
2. Use meaningful variable and function names
|
|
|
|
3. Use const and let instead of var to declare variables
|
|
|
|
4. Use arrow functions for concise and readable code
|
|
|
|
5. Avoid global variables and use local scope
|
|
|
|
6. Use template literals for string interpolation
|
|
|
|
7. Use async/await instead of callbacks for asynchronous operations
|
|
|
|
8. Use propTypes to validate input types in React components
|
|
|
|
9. Use stateless functional components whenever possible
|
|
|
|
10. Use controlled components in React forms.
|
|
|
|
|