We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dc6daac + 60a9671 commit dd71c36Copy full SHA for dd71c36
koans/AboutArrays.js
@@ -3,7 +3,7 @@ describe("About Arrays", function() {
3
//We shall contemplate truth by testing reality, via spec expectations.
4
it("should create arrays", function() {
5
var emptyArray = [];
6
- 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
7
expect(emptyArray.length).toBe(FILL_ME_IN);
8
9
var multiTypeArray = [0, 1, "two", function () { return 3; }, {value1: 4, value2: 5}, [6, 7]];
0 commit comments