In slices the zero value is an empty slice.
var myIntSlice []int    // [] - an empty slice
Use make to create a slice populated with values, any values created in the slice are set to the zero value of the type of the slice. For instance:
myIntSlice := make([]int, 5)    // [0, 0, 0, 0, 0] - a s...