Make
A map can also be declared with the var keyword, but this creates a null map, as the default zero value of the map is nil. Adding any key-value pair to this map will cause panic.
The built-in make function can be used to create a map. It returns an initialized map.
make(map[string]int)