Skip to content

Commit c76b829

Browse files
committed
Section 00 (Intro) Ready for Test
1 parent aecb4c0 commit c76b829

File tree

1 file changed

+29
-7
lines changed

1 file changed

+29
-7
lines changed

learning/javascript/README.md

+29-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Learning JavaScript
22

3-
*Note*: Right now this is just a catch-all place for some JavaScript learning resources and scribbly notes. I may continue to organize this more formally as we go.
3+
*Note*: Right now this is just a catch-all place for some JavaScript learning resources and scribbly notes. I may continue to organize this more formally as we go. The sections will be based roughly on the excellent [_Eloquent JavaScript_](http://eloquentjavascript.net/) by Martijn Haverbeke.
44

55
# JavaScript, Introduction
66

@@ -24,16 +24,33 @@ JavaScript is a language, but it needs a place to be executed. There are several
2424
* SpiderMonkey (first JS engine ever; now in Firefox)
2525
* Nitro (Safari)
2626

27-
## Questions for Thought
2827

29-
* Is there a difference between JavaScript and ECMAScript? Why do both exist?
30-
* Explore: What's the relationship between JavaScript and node?
28+
## An Aside: Matters of Style and Opinion
29+
30+
Toward the end of the introduction for _Eloquent JavaScript_ is a code block like this:
31+
32+
```javascript
33+
function fac(n) {
34+
if (n == 0)
35+
return 1;
36+
else
37+
return fac(n - 1) * n;
38+
}
39+
```
40+
41+
Coding style is like writing style and punctuation: different people do it differently. At Cloud Four, we have our own set of conventions for writing JavaScript (and other things, like CSS!) that we try to stick to. In fact, this code block violates one of them.
42+
43+
We define JavaScript coding conventions at Cloud Four using two tools, [JSHint](http://jshint.com/) and [JSCS](http://jscs.info/).
44+
45+
JSHint conventions are tuned toward preventing you from making actual programming mistakes, while JSCS conventions are stylistic.
46+
47+
Configuration files for both JSHint and JSCS are installed automatically on Cloud Four laptops using boxen, and the appropriate plugins/packages for enforcing them are installed for either Atom or SublimeText. In case you are curious, you can [find our current conventions here](https://github.com/cloudfour/cloudfour-boxen/tree/master/modules/cloudfour_potions/files/dotfiles) (`jscsrc` and `jshintrc`).
3148

3249
## Exercises
3350

3451
These let you try out a couple of places that you can go to test JavaScript and inspect the state of the browser environment.
3552

36-
### Web Inspector, the `window` object
53+
### Exercise 1: Web Inspector, the `window` object
3754

3855
In Chrome, open the Web Inspector (`Option-Cmd-I` on a Mac) and go to the `console` tab.
3956

@@ -49,7 +66,7 @@ What this does is display (print out) a representation of the value for the iden
4966

5067
Expand the `window` object and explore it a bit, especially the stuff under the `document` property (itself another object...it's objects all the way down!). The `document` object contains representations of a lot of stuff about the web document in the browser window and you may start seeing some items that look familiar here.
5168

52-
### ScratchPad, `window` object redux
69+
### Exercise 2: ScratchPad, `window` object redux
5370

5471
In Firefox, go to `Tools -> Web Developer -> Scratchpad...`. You can [read more about it here](https://developer.mozilla.org/en-US/docs/Tools/Scratchpad) if you like.
5572

@@ -65,7 +82,12 @@ and hit enter.
6582
6683
Now click the `Run` button. Nothing happens. That's because we're not _in_ the console, the way we were when we were in the Web Inspector console above. This isn't a console, so things aren't logging out (displaying their values). But what if we wanted to examine the `window` object? There are two options. One is to right-click the `window` text and choose `Inspect` from the pop-up menu (this lets you explore the current state of the `window` object on that line).
6784
68-
#### Thinking Points
85+
#### Exercise Thinking Points
6986
7087
* What happens if you modify the code in the ScratchPad to read: `console.log(window);` and click `Run`? Can you find the output?
7188
* What is the value of the `window.document.URL` property? What does it refer to?
89+
90+
## Questions for Thought
91+
92+
* Is there a difference between JavaScript and ECMAScript? Why do both exist?
93+
* Explore: What's the relationship between JavaScript and node?

0 commit comments

Comments
 (0)