Get Value at Index
Examples
Filter
package main
import (
"fmt"
)
func main() {
list := []string{"a", "b", "c"}
fmt.Println(list[1])
}
Last Run
:
b