go language Maps code example

Example 1: go add to map

m := make(map[string]int)
m["numberOne"] = 1
m["numberTwo"] = 2

Example 2: what is the use of map in golang

Search Results
Featured snippet from the web
In Go language, a map is a powerful, ingenious, and a versatile data structure. Golang Maps is a collection of unordered pairs of key-value. It is widely used because it provides fast lookups and values that can retrieve, update or delete with the help of keys. It is a reference to a hash table.

Tags:

Go Example