delete array elements in golang code example
Example 1: golang delete element from array
func RemoveIndex(s []string, index int) []string {
return append(s[:index], s[index+1:]...)
}
Example 2: golang array remove item
a[i] = a[len(a)-1]
a = a[:len(a)-1]