Maps
Learn about maps in Go.
We'll cover the following...
map
iteration order is random (no really)
Technically map iteration order is “undefined”. Go maps use a hash
table internally so map
iteration would normally be done in whatever
order the map
elements are laid out in that table. This order can’t be relied on and changes as a hash table grow when new elements are added to the map.
In the ...