Answers for "map string map golang"

Go
3

golang map

//map in go is a built in type implementaiton of has table
//create an 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")
Posted by: Guest on September-07-2021
-2

map string interface golang

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

Browse Popular Code Answers by Language