Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion koans/AboutArrays.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ describe("About Arrays", function() {
//We shall contemplate truth by testing reality, via spec expectations.
it("should create arrays", function() {
var emptyArray = [];
expect(typeof(emptyArray)).toBe(FILL_ME_IN); //A mistake? - http:javascript.crockford.com/remedial.html
expect(typeof(emptyArray)).toBe(FILL_ME_IN); //A mistake? - https://www.crockford.com/javascript/remedial.html
expect(emptyArray.length).toBe(FILL_ME_IN);

var multiTypeArray = [0, 1, "two", function () { return 3; }, {value1: 4, value2: 5}, [6, 7]];
Expand Down
2 changes: 1 addition & 1 deletion koans/AboutInheritance.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe("About inheritance", function() {
});
});

// http://javascript.crockford.com/prototypal.html
// https://www.crockford.com/javascript/prototypal.html
Object.prototype.beget = function () {
function F() {}
F.prototype = this;
Expand Down