VOOZH about

URL: https://www.geeksforgeeks.org/swift/how-to-count-the-elements-of-an-array-in-swift/

⇱ How to count the elements of an Array in Swift? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to count the elements of an Array in Swift?

Last Updated : 2 Jun, 2022

In Swift, an array is an ordered generic collection that is used to keep the same type of data like int, float, string, etc., here you are not allowed to store the value of another type. It also keeps duplicate values of the same type. An array can be mutable and immutable. When we assign an array to a variable, then that array is known as mutable whereas when we assign an array to a constant, then that array is known as immutable. In the Swift array, we can count the elements of the array. To do this we use the count property of the array. This property is used to count the total number of values available in the specified array.

Syntax:

arrayName.count

Here, 

arrayName is the object of the array class.

Return Value: It will return the total number of values present in the given array. 

Example 1:

Output:

Total number of authors: 6
Total number of Gemployees: 0

Example 2:

Output:

Array contains more authors name
Comment
Article Tags:

Explore