Answers for "how to find the data in an object array using index swift"

1

How to find index of list item in Swift?

let arr = ["a","b","c","a"]

let indexOfA = arr.firstIndex(of: "a") // 0
let indexOfB = arr.lastIndex(of: "a") // 3
Posted by: Guest on January-30-2020

Code answers related to "how to find the data in an object array using index swift"

Code answers related to "Swift"

Browse Popular Code Answers by Language