Skip to content

Commit dd71c36

Browse files
author
David Laing
committed
Merge pull request hackreactor#18 from magopian/patch-1
Update koans/AboutArrays.js
2 parents dc6daac + 60a9671 commit dd71c36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

koans/AboutArrays.js

+1-1
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)