Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyGomaps and iterationSingle-choice MCQ

What happens when you call `delete` on a key that is not in the map?

m := map[string]int{"x": 1} delete(m, "y") fmt.Println(len(m))