Skip to content

Commit

Permalink
Fix incorrect description of array.length assignment.
Browse files Browse the repository at this point in the history
  • Loading branch information
tobie committed Feb 4, 2012
1 parent 348f2e2 commit 51fc96d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/en/array/general.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ elements that are contained in the array, the *setter* can be used to
foo; // [1, 2, 3]

foo.length = 6;
foo; // [1, 2, 3]
foo.push(4);
foo; // [1, 2, 3, undefined, undefined, undefined, 4]

Assigning a smaller length does truncate the array, but increasing the length
does not have any effect on the array.
Assigning a smaller length truncates the array. Increasing it creates a sparse array.

### In Conclusion

Expand Down

0 comments on commit 51fc96d

Please sign in to comment.