diff --git a/client/src/pages/guide/english/ruby/common-array-methods/index.md b/client/src/pages/guide/english/ruby/common-array-methods/index.md index 0cf9f88ed69..e24d80e0f73 100644 --- a/client/src/pages/guide/english/ruby/common-array-methods/index.md +++ b/client/src/pages/guide/english/ruby/common-array-methods/index.md @@ -18,6 +18,16 @@ The .length method tallies the number of elements in your array and returns the array.length => 5 ``` +This is also similar to .count and .size methods. + +``` ruby +array.count +=> 5 +``` +``` ruby +array.size +=> 5 +``` #### .first The .first method accesses the first element of the array, the element at index 0: