Jak sprawdzić, czy istnieje wartość na mapie Golang

if val, ok := dict["foo"]; ok {
    //do something here
}
Pleasant Panther