Skip to content
Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion concepts/arrays/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ int secondElement = twoInts[1];
Accessing an index that is outside of the valid indexes for the array results in an `IndexOutOfBoundsException`.

Arrays can be manipulated by either calling an array instance's methods or properties, or by using the static methods defined in the `Arrays` class (typically only used in generic code).
The most commonly used property for arrays is its length which can be accessed like this:
Java has a built-in `length` property that returns the length of an array, which can be accessed like this:

```java
int arrayLength = someArray.length;
Expand Down