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: learning/javascript/README.md
+29-7
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Learning JavaScript
2
2
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.
4
4
5
5
# JavaScript, Introduction
6
6
@@ -24,16 +24,33 @@ JavaScript is a language, but it needs a place to be executed. There are several
24
24
* SpiderMonkey (first JS engine ever; now in Firefox)
25
25
* Nitro (Safari)
26
26
27
-
## Questions for Thought
28
27
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
+
functionfac(n) {
34
+
if (n ==0)
35
+
return1;
36
+
else
37
+
returnfac(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`).
31
48
32
49
## Exercises
33
50
34
51
These let you try out a couple of places that you can go to test JavaScript and inspect the state of the browser environment.
35
52
36
-
### Web Inspector, the `window` object
53
+
### Exercise 1: Web Inspector, the `window` object
37
54
38
55
In Chrome, open the Web Inspector (`Option-Cmd-I` on a Mac) and go to the `console` tab.
39
56
@@ -49,7 +66,7 @@ What this does is display (print out) a representation of the value for the iden
49
66
50
67
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.
51
68
52
-
### ScratchPad, `window` object redux
69
+
### Exercise 2: ScratchPad, `window` object redux
53
70
54
71
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.
55
72
@@ -65,7 +82,12 @@ and hit enter.
65
82
66
83
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).
67
84
68
-
#### Thinking Points
85
+
#### Exercise Thinking Points
69
86
70
87
* What happens if you modify the code in the ScratchPad to read: `console.log(window);` and click `Run`? Can you find the output?
71
88
* 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