Golang maps

Map is an unordered collection of key-value pairs where each key is unique and implements hash-table data structure that offer fast lookups, adds and deletes.

They are also called associative arrays or dictionaries and has many areas of use.

Read More