Maps in Go (2025)

Go has one associated data structure - “map”. Map is a hash table where you can store data in key/value pairs. Following syntax is used to create a map.

Arrays and Slices (2025)

Go has two collection types: Arrays and Slices.