Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Corrected a typo in the Array section.
  • Loading branch information
ifligus committed Mar 4, 2013
commit 7431ad808a3598f1acda475d1a149c256f683551
2 changes: 1 addition & 1 deletion page/javascript-101/types.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ alert( bar[0] );
alert( bar.length );
```

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.
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.

A few common array methods are shown below:

Expand Down