Answers for "how to append a map map<string, map<string, string>>"

Go
0

appending map into map golang

for _, note := range notes {
        thisNote := map[string]string{
            "Title":note.Title,
            "Body":note.Body,
        }

        content["notes"] = append(content["notes"], thisNote)
}
Posted by: Guest on November-01-2020

Code answers related to "how to append a map map<string, map<string, string>>"

Browse Popular Code Answers by Language