diff --git a/this & object prototypes/ch3.md b/this & object prototypes/ch3.md index 6c504f481..6243b7dfb 100644 --- a/this & object prototypes/ch3.md +++ b/this & object prototypes/ch3.md @@ -258,7 +258,7 @@ myArray[0]; // "foo" myArray[2]; // "bar" ``` -Arrays *are* objects, so even though each index is a positive integer, you can *also* add properties onto the array: +Arrays *are* objects, so even though each index is a non-negative integer, you can *also* add properties onto the array: ```js var myArray = [ "foo", 42, "bar" ];