golang map key value pair code example
Example 1: create map golang
//map in go is a built in type implementaiton of has table
//create a empty map
myMap := make(map[string]string)
//insert key-value pair in map
myMap["key"] = "value"
//read from map
value, ok := myMap["key"]
//delete from map
delete(myMap, "key")
Example 2: go add to map
m := make(map[string]int)
m["numberOne"] = 1
m["numberTwo"] = 2