Answers for "get length of array swift"

4

get length of array swift

// Initialize the Array
var a = [1,2,3]

// Get the size of the array

let size = a.count
print(size)
Posted by: Guest on May-01-2020

Code answers related to "Swift"

Browse Popular Code Answers by Language