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

Skip to content

Commit 3735916

Browse files
author
sea
committed
Update 02-the-basics.md
note: "For this book, we will focus on using Chrome and its developer tools for two reasons: Chrome has a a set of versatile and powerful tools, and focusing on the tools of one browser helps keep the instructions simple." you say this yet two paragraphs away you tell the reader they should also look at Firefox! maybe reword that paragraph from "You should" to "It's also good to familiarize yourself with", etc. Line 69, I changed from "We learned that", which doesn't make sense with line 70 ("We learned that: the javascript console". Reword?)
1 parent 5948882 commit 3735916

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

chapters/02-the-basics.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,21 @@ Type this into the console:
5555
console.error('this is an error');
5656
```
5757

58-
That's an error! Note how it shows up in red. Look in the bottom right corner of the browser. You'll see a little red circle with an x in the middle, and a number on its right side. That's a helpful little indicator of errors in your javascript, and any time something is wonky with your code that red circle will show up.
58+
That's an error! Note how it shows up in red. Look in the bottom right corner of the browser. You'll see a little red circle with an x in the middle, and a number on its right side. That's a helpful little indicator of errors in your javascript, and any time something is wonky with your code, that red circle will show up.
5959

6060
With most errors you'll also be able to see a line number from your javascript file, which will help you pinpoint the offending code. We'll get into errors and debugging in more detail later in the book.
6161

6262
## More developer tools
63-
The javascript console is just one of the tools available for web development inside of Chrome. For this book we will focus on using Chrome and its developer tools for two reasons: Chrome has a a set of versatile and powerful tools, and focusing on the tools of one browser helps keep the instructions simple.
63+
The javascript console is just one of the tools available for web development inside of Chrome. For this book, we will focus on using Chrome and its developer tools for two reasons: Chrome has a a set of versatile and powerful tools, and focusing on the tools of one browser helps keep the instructions simple.
6464

6565
Check out the [Chrome Developer Tools documentation](https://developers.google.com/chrome-developer-tools/) to learn more about all that Chrome has to offer for developers working with javascript, html, and css.
6666

6767
You should also familiarize yourself with the developer tools in Firefox. Check out the [Mozilla Developer Network documentation for the Firefox developer tools](https://developer.mozilla.org/en-US/docs/Tools).
6868

69-
## Recap! We learned that:
69+
## Recap! We learned:
7070
- the javascript console and learned that we can type in javascript!
71-
- we can use code like `console.log()` and `console.error()` to print information to the console.
72-
- Chrome has a lot of useful tools, and later in the book we'll learn how they can help with experimenting with code, auditing the performance of our site, investigating the information sent between the browser and the server, and more.
71+
- that we can use code like `console.log()` and `console.error()` to print information to the console
72+
- that Chrome has a lot of useful tools (later in the book, we'll learn how they can help with experimenting with code, auditing the performance of our site, investigating the information sent between the browser and the server, and more!)
7373

7474

7575

0 commit comments

Comments
 (0)