You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Basics/README.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@
10
10
|[Functions in JavaScript](#functions-in-javascript)|
11
11
|[Arrays](#arrays)|
12
12
|[Importing JavaScript with `defer` and `async`](#importing-javascript-with-defer-and-async)|
13
+
|[Efficient Development & Debugging](#efficient-development--debugging)|
13
14
14
15
15
16
@@ -334,3 +335,22 @@ Readings:
334
335
-[Async & Defer — How to Load JavaScript Properly](https://javascript.plainenglish.io/async-and-defer-the-complete-guide-to-loading-javascript-properly-ce6edce1e6b5)
335
336
336
337
-[Efficiently load JavaScript with defer and async](https://flaviocopes.com/javascript-async-defer/)
338
+
339
+
## Efficient Development & Debugging
340
+
341
+
| Write Code Efficiently | Find Help | Debug Your Code |
342
+
| :--- | :--- | :--- |
343
+
| Work in a productive environment (i.e. IDE, editor)| Use MDN | An error message! Don't panic instead read and utilize error messages |
344
+
| Auto-format code & use shortcuts | Learn how to google (seriously!) | Use console.log() to gain insights into your code (flow) |
345
+
| Use auto-completion and hints | Ask proper questions, help others | Use the (Chrome) debugging tools |
346
+
| Explore extensions & settings | Trial & Error | Use your IDEs debugging capabilities |
0 commit comments