Holen Sie sich die Länge der Array Swift
// Initialize the Array
var a = [1,2,3]
// Get the size of the array
let size = a.count
print(size)
Average Ant
// Initialize the Array
var a = [1,2,3]
// Get the size of the array
let size = a.count
print(size)