Skip to content

Commit 84d7e97

Browse files
committed
Added new Debugging module structure
+ create README.md file
1 parent e2980f8 commit 84d7e97

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

04-debugging/README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Debugging
2+
3+
My solution proposals for the [Debugging](https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/#debugging)
4+
exercises.
5+
6+
freeCodeCamp module description:
7+
> *"Debugging is the process of going through your code, finding any issues, and fixing them. Issues in code generally come in three forms: syntax errors that prevent your program from running, runtime errors where your code has unexpected behavior, or logical errors where your code doesn't do what you intended. In this course, you'll learn how to use the JavaScript console to debug programs and prevent common issues before they happen."*
8+
9+
### Exercises
10+
11+
- [ ] [ 01 - Use the JavaScript Console to Check the Value of a Variable]()
12+
- [ ] [ 02 - Understanding the Differences between the freeCodeCamp and Browser Console]()
13+
- [ ] [ 03 - Use typeof to Check the Type of a Variable]()
14+
- [ ] [ 04 - Catch Misspelled Variable and Function Names]()
15+
- [ ] [ 05 - Catch Unclosed Parentheses, Brackets, Braces and Quotes]()
16+
- [ ] [ 06 - Catch Mixed Usage of Single and Double Quotes]()
17+
- [ ] [ 07 - Catch Use of Assignment Operator Instead of Equality Operator]()
18+
- [ ] [ 08 - Catch Missing Open and Closing Parenthesis After a Function Call]()
19+
- [ ] [ 09 - Catch Arguments Passed in the Wrong Order When Calling a Function]()
20+
- [ ] [ 10 - Catch Off By One Errors When Using Indexing]()
21+
- [ ] [ 11 - Use Caution When Reinitializing Variables Inside a Loop]()
22+
- [ ] [ 12 - Prevent Infinite Loops with a Valid Terminal Condition]()
23+
24+
⬅️ [Back to main file](../README.md)
25+
26+
###### Disclaimer: This repository should not be viewed as a facilitator for these courses. <br> This is intended to highlight and memorize my journey through this certification.

0 commit comments

Comments
 (0)