You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is to drop the phrase "most commonly used" from the description of the property, which seems unnecessary.
Co-authored-by: Kah Goh <[email protected]>
Copy file name to clipboardExpand all lines: concepts/arrays/about.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,8 @@ int secondElement = twoInts[1];
44
44
Accessing an index that is outside of the valid indexes for the array results in an `IndexOutOfBoundsException`.
45
45
46
46
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).
47
-
The most commonly used property for arrays is its length which can be accessed like this:
47
+
The `length` property holds the length of an array.
Copy file name to clipboardExpand all lines: concepts/arrays/introduction.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,8 @@ int secondElement = twoInts[1];
44
44
Accessing an index that is outside of the valid indexes for the array results in an `IndexOutOfBoundsException`.
45
45
46
46
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).
47
-
The most commonly used property for arrays is its length which can be accessed like this:
47
+
The `length` property holds the length of an array.
Copy file name to clipboardExpand all lines: exercises/concept/bird-watcher/.docs/introduction.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,8 @@ int secondElement = twoInts[1];
46
46
Accessing an index that is outside of the valid indexes for the array results in an `IndexOutOfBoundsException`.
47
47
48
48
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).
49
-
The most commonly used property for arrays is its length which can be accessed like this:
49
+
The `length` property holds the length of an array.
0 commit comments