Creator of JSLint and author of Javascript: The Good Parts.
1437
votes
5answers
191k views
What does “use strict” do in JavaScript, and what is the reasoning behind it?
Recently, I ran some of my JavaScript code through Crockford's JSLint, and it gave the following error:
Problem at line 1 character 1: Missing "use strict" statement.
Doing some searching, I ...
10
votes
3answers
496 views
Usage of toString in JavaScript
I'm reading through Douglas Crockford's JavaScript: The Good Parts, and I'm at the point where he defines a fade function. Part of this code boils down to this:
var level = 1;
var hex = ...
16
votes
4answers
3k views
What is happening in Crockford's object creation technique?
There are only 3 lines of code, and yet I'm having trouble fully grasping this:
Object.create = function (o) {
function F() {}
F.prototype = o;
return new F();
};
newObject = ...
8
votes
2answers
322 views
Minor drawback with Crockford Prototypical Inheritance
Just experimenting with different inheritance techniques in JS, and came across something mildly discomfiting about Crockford's Prototypal Inheritance pattern:
function object(o) {
function F() ...
4
votes
2answers
623 views
Crockford's hanoi function (from “The Good Parts”)
at the moment I'm reading Douglas Crockford's book, and the towers of hanoi function is a bit over my head. Even with logging stuff to the console I wasn't able to really understand what's going on. ...
22
votes
8answers
4k views
JavaScript: The Good Parts - How to not use `new` at all
Crockford's book, JavaScript: The Good Parts, says (on page 114) that constructor functions should always be given names with an initial capital letter (ie. Point), and that function names with ...
10
votes
3answers
2k views
What are the use cases for closures/callback functions in Javascript?
I was listening to Crockford's talk on Javascript closures and am convinced of the benefit of information hiding, but I do not have a firm understanding of when to use callback functions.
It is ...
17
votes
5answers
1k views
The disadvantages of JavaScript prototype inheritance, what are they?
I recently watched Douglas Crockford's JavaScript presentations, where he raves about JavaScript prototype inheritance as if it is the best thing since sliced white bread. Considering Crockford's ...
8
votes
4answers
463 views
augmenting types in javascript
I'm reading Douglas Crockford's JavaScript: The Good Parts, and I'm a little confused about something. In chapter 4, under Augmenting Types, he creates a shortcut for adding a method.
...
8
votes
3answers
2k views
Javascript: The Good Parts; why is lookahead not good?
I'm reading Douglas Crockfords Javascript: The Good Parts, I just finished the regular expressions chapter. In this chapter he calls javascript's \b, positive lookahead (?=) and negative lookahead ...
2
votes
3answers
461 views
Javascript: The Good Parts Names/Strings railroad diagrams confusing
I started reading Javascript: The Good Parts book and became confused at first pages (7 and 9 if be exact) by the railroad diagrams.
There are diagrams for the name and the string literal. (you can ...