9951 explained code solutions for 126 technologies


golangHow to append value to array


func main() {
  var arr []string
  arr = append(arr, "a", "b")
  arr = append(arr, "c")
  fmt.Println(arr)
}ctrl + c
func main() {

declare main function that will be launched automatically

var arr []string

declare sample string slice

append

appends given value(s) to specified slice

arr

slice to append values to

"a", "b"

you can append multiple values at once

"c"

or single value