Answers for "how to iterate over map[string]interface{} golang"

Go
0

golang iterate through map

var m = map[string]string{}
m["key"] = "value"
m["someOtherKey"] = "someOtherValue"

for key, value := range m {
  fmt.Println(fmt.Sprintf("%s : %s", key, value))
}
Posted by: Guest on June-12-2020
-2

map string interface golang

{
   "name":"John",
   "age":29,
   "hobbies":[
      "martial arts",
      "breakfast foods",
      "piano"
   ]
}
Posted by: Guest on March-01-2021

Code answers related to "how to iterate over map[string]interface{} golang"

Browse Popular Code Answers by Language