Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

306
votes
5answers
46k 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 ...
15
votes
5answers
409 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 ...
11
votes
8answers
714 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 ...
8
votes
2answers
226 views

Finding justification in some of Crockford's claims

I've read Crockford's JavaScript: The Good Parts and I use his validator JSLint. He is a world reference, so I follow his advice. Sometimes, I'm left wondering the justification behind his ...
8
votes
4answers
2k 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 = ...
7
votes
3answers
587 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 ...
5
votes
4answers
2k views

JavaScript Module Pattern - What about using “return this”?

After doing some reading about the Module Pattern, I've seen a few ways of returning the properties which you want to be public. One of the most common ways is to declare your public properties and ...
5
votes
2answers
176 views

Does margin-left:2px; render faster than margin:0 0 0 2px;?

Douglas Crockford describes the consequence of Javascript inquiring a node's style. How simply asking for the margin of a div causes the browser to 'reflow' the div in the browser's rendering engine ...
5
votes
3answers
637 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 ...
4
votes
1answer
99 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
3answers
105 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. ...
4
votes
1answer
1k views

Prototypal inheritance: Can you chain Object.create?

I'm new to prototypal inheritance so I'm trying to understand the 'right' way. I thought I could do this: if (typeof Object.create !== 'function') { Object.create = function (o) { ...
3
votes
3answers
101 views

javascript question about toString()

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 = ...
3
votes
3answers
211 views

Crockford-style prototypal pattern gotcha; looking for an elegant solution

I often use Crockford's prototypal pattern when writing Javascript programs. I thought I understood all the "gotchas" involved, but I discovered one I didn't think about before. I'd like to know if ...
3
votes
2answers
315 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. ...
2
votes
1answer
263 views

Java implementation of Crockford's Base32 encoding/decoding [closed]

I'm looking for an implementation of Crockford's Base32 encoding/decoding in Java. Specifically, that means a Java library that I can use in my projects. Alternatively, some code example to do the ...
2
votes
1answer
171 views

json2: why does “var JSON” in global scope not clobber the global JSON object?

At the top of json2.js (line 160 after the comments: https://github.com/douglascrockford/JSON-js/blob/master/json2.js), is the following code: var JSON; if (!JSON) { JSON = {}; } Typically, ...
2
votes
1answer
227 views

Using `this` in Crockford's pseudoclassical inheritance pattern

I've just read The Good Parts, and I'm slightly confused about something. Crockford's example of pseudoclassical inheritance goes like this: var Mammal = function (name) { this.name = name; }; ...
1
vote
0answers
68 views

JSLint complains about function expression namespace syntax

Alright, I know what's the difference between a FunctionDeclaration and a FunctionExpression. @CMS did a great job of explaining that. Till recently, I used to use the same syntax for creating lambda ...
1
vote
3answers
100 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 ...
1
vote
3answers
189 views

Javascript extending types return question

i'm actually studying Crockford's Javascript: the good parts. I am new to JavaScript so i'm having a difficult time to understand how this code works: Function.prototype.method = function (name, ...
1
vote
2answers
234 views

Is there any practical reason to use quoted strings for json keys?

According to Crockford's json.org, a json object is made up of members, which is made up of pairs. Every pair is made of a string and a value, with a string being defined as: A string is a ...
1
vote
1answer
49 views

Properties attaching to wrong object

I've adapted the Crockford object() function so that I can pass in some parameters and autorun an init function in the new object: function object(o) { function F() {} F.prototype = o; ...
0
votes
1answer
45 views

Why does a child object in JavaScript lose the global scope?

I am striving to follow Douglas Crockford's advice from "JavaScript: The Good Parts" and his web site: Use of global variables should be minimized. Implied global variables should never be used. ...
0
votes
2answers
56 views

Javascript function called object with lower-case “o”

I just watched an introductory Javascript lecture from Douglas Crockford, in which he mentions a function called object that should be used to create a new object linked to an object as its parameter. ...
0
votes
1answer
37 views

How to handle object properties when using the pure prototyping approach in Javascript

I'm an experienced coder learning Javascript for the first time, using Douglas Crockford's "Javascript: The Good Parts" book. In it, he recommends using a 'purely prototypal' approach to inheritance, ...
0
votes
2answers
79 views

Can't get simple ADsafe widget to work

I'm trying to use Douglas Crockford's ADsafe library. I thought it is supposed to restrict the JavaScript that can be used, but it seems to be letting dangerous calls through, such as eval(). Here's ...
0
votes
2answers
116 views

Javascript : when B inherits from A, callbacks in A cannot see B

Cannot figure out how to get access to the "extended" properties of a child object from a callback in the parent. My two attempts are below. I would like for the function "say_something" to alert "say ...
0
votes
3answers
568 views

The Bad Parts of Crockford's book: “JavaScript: The Good Parts”? [closed]

Definitely, Crockford's book: "JavaScript: The Good Parts" is one of the best books in Javascript. However, it is hard to read. I have spent hundreds hours but still cannot understand it completely. ...