map of golang code example
Example 1: initialize map in golang
// By default maps in Go behaves like a default dictionary in python
m := make(map[string]int)
m["Dio"] = 3
m["Jonathan"] = 1
Example 2: appending map into map golang
{ "notes":
{
"Title":note.Title,
"Body":note.Body,
},
{
"Title":note.Title,
"Body":note.Body,
},
{
"Title":note.Title,
"Body":note.Body,
},
}