Golang slices
16 August 2024 (Updated 16 August 2024)
On this page
In a nutshell
A slice is a reference to a portion of an array. Changing the elements of a slice modifies the corresponding elements in the underlying array.
Define a slice
Outputs:
[John Bob Jill Tim]
[Mike Bob]
Append to slice
Iterate over slice
Tagged:
Golang