Skip to content

Commit 60a9671

Browse files
committed
Update koans/AboutArrays.js
typo in the url for "remedial javascript"
1 parent dc6daac commit 60a9671

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

koans/AboutArrays.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ describe("About Arrays", function() {
33
//We shall contemplate truth by testing reality, via spec expectations.
44
it("should create arrays", function() {
55
var emptyArray = [];
6-
expect(typeof(emptyArray)).toBe(FILL_ME_IN); //A mistake? - http:javascript.crockford.com/remedial.html
6+
expect(typeof(emptyArray)).toBe(FILL_ME_IN); //A mistake? - http://javascript.crockford.com/remedial.html
77
expect(emptyArray.length).toBe(FILL_ME_IN);
88

99
var multiTypeArray = [0, 1, "two", function () { return 3; }, {value1: 4, value2: 5}, [6, 7]];

0 commit comments

Comments
 (0)