Getting the first n elements from a array in Swift

Getting the first n elements from a array in Swift

In this post we will give you information about Getting the first n elements from a array in Swift. Hear we will give you detail about Getting the first n elements from a array in SwiftAnd how to use it also give you demo for it if it is necessary.

Learn, how to get the first n elements from an array in swift.

Consider, we have a following array:

var arr = [10, 20, 30, 40, 50, 60, 70]

To access the first n elements from an above array, we can use the prefix() method by passing the required number of elements as an argument to it.

Here is an example, that gets the first 3 elements of an array.

var arr = [10, 20, 30, 40, 50, 60, 70]let firstThree  = arr.prefix(3)print(firstThree)

Output:

[10, 20, 30]

Similarly, we can also use the Array subscript syntax [ ] like this.

var arr = [10, 20, 30, 40, 50, 60, 70]let firstThree  = arr[...3]print(firstThree)

Hope this code and post will helped you for implement Getting the first n elements from a array in Swift. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US