1. 2
    Iterate over an Array or Slice in Go
    7m 30s

Iterate over an Array or Slice in Go

InstructorJeff Roberts

Share this video with your friends

Send Tweet

There are a couple of different ways to iterate over an array or slice in Go. The primary approach is to use range, which handles the iteration for you. However, you can also use a traditional for loop if you need to do something out of the ordinary, like iterating in reverse or skipping every other element.