Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit defb5c7

Browse files
authored
Update README.md
Fix links to debuggers
1 parent 2612abf commit defb5c7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Week1/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ These are the topics for week 1.
1818
5. [What are values?](https://study.hackyourfuture.net/#/javascript/values)
1919
6. [Statements vs. Expressions](https://study.hackyourfuture.net/#/javascript/statements-vs-expressions)
2020
7. [Operators](https://study.hackyourfuture.net/#/javascript/operators)
21-
8. Tools to help understand code
22-
- [JSTutor](https://study.hackyourfuture.net/#/tools/jstutor)
23-
- [The browser debugger](https://study.hackyourfuture.net/#/tools/debugging)
21+
8. [Debuggers](https://study.hackyourfuture.net/#/tools/debuggers)
2422
9. Testing code
2523
- [Assertion](https://study.hackyourfuture.net/#/testing/assertion)
2624

@@ -31,7 +29,7 @@ This week is all about getting you started in the world of JavaScript. For that
3129

3230
Time to start learning the language with the first building blocks: variables! Have a look at what variables are [here](https://study.hackyourfuture.net/#/javascript/variables) and what values are [here](https://study.hackyourfuture.net/#/javascript/values). Then let's go over some syntax with the difference between statements and expressions [here](https://study.hackyourfuture.net/#/javascript/statements-vs-expressions). And finally let's look at what we can do with variables and values by using what's called operators. Read about them [here](https://study.hackyourfuture.net/#/javascript/operators).
3331

34-
To help learn the language we also want to introduce you to some tools that you can use to look under the hood of your code. Have a look at the JSTutor explanation [here](https://study.hackyourfuture.net/#/tools/jstutor) and how you can use it. Also have a look at the first part of the debugging explanation [here](https://study.hackyourfuture.net/#/tools/debugging). You won't understand a lot of what's there yet, but debugging is so important we want you to look at it early. Read through it once and play around a bit in the debugger. We will be telling you to revisit the debugging section over the next few weeks as you start learning more and more about what is possible.
32+
To help learn the language we also want to introduce you to some tools that you can use to look under the hood of your code in the section about [debuggers](https://study.hackyourfuture.net/#/tools/debuggers). You won't understand everything of what's there yet, but debugging is so important we want you to look at it early. Read through it once and play around a bit in the debugger. We will be telling you to revisit the debugging section over the next few weeks as you start learning more and more about what is possible.
3533

3634
Lastly we want to introduce the first steps to testing code with some code you will find in your exercises. Have a look at what assertion is [here](https://study.hackyourfuture.net/#/testing/assertion), the `console.assert` lines in your practice exercises uses this to check that your code does the right thing.
3735

0 commit comments

Comments
 (0)