Maps are Go’s built-in associative data type (sometimes called hashes or dicts in other languages).
One of the most useful data structures in computer science is the hash table. Many hash table implementations exist with varying properties, but in general they offer fast lookups, adds, and deletes. Go provides a built-in map type that implements a hash table.

#golang

Go Tutorial (Golang) 15 - Golang Maps with Example
1.40 GEEK