Answers for "golang iterate through slice"

Go
1

golang iterate through slice

var slice = []string{"Apple", "Orange", "Kiwi"}
for index, sliceItem := range slice { // You can omit index or sliceItem with a _
  fmt.Println("Index in slice:", index)
  fmt.Println("Fruit:", sliceItem)
}
Posted by: Guest on June-12-2020

Browse Popular Code Answers by Language