Skip to content

Commit 105a3ab

Browse files
ifligusajpiano
authored andcommitted
Inserted missing word in the JavaScript 101 Arrays article. Fixes #299.
1 parent 560b420 commit 105a3ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

page/javascript-101/types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ alert( bar[0] );
148148
alert( bar.length );
149149
```
150150

151-
An array can be manipulated through methods that are available on the instance of the array. Items in the array can be accessed using bracket notation with a given. If the index does not exist or contains no value, the return type will be undefined.
151+
An array can be manipulated through methods that are available on the instance of the array. Items in the array can be accessed using bracket notation with a given index. If the index does not exist or contains no value, the return type will be undefined.
152152

153153
A few common array methods are shown below:
154154

0 commit comments

Comments
 (0)