Skip to content

Commit

Permalink
Merge pull request hackreactor#18 from magopian/patch-1
Browse files Browse the repository at this point in the history
Update koans/AboutArrays.js
  • Loading branch information
David Laing committed Feb 15, 2013
2 parents dc6daac + 60a9671 commit dd71c36
Showing 1 changed file with 1 addition and 1 deletion.
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? - http://javascript.crockford.com/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

0 comments on commit dd71c36

Please sign in to comment.