Golang (Go) Tutorial - Maps - Key-Value Pairs

Unlock Premium Features: AI explanations (Hinglish), Indian voice & Videos
Sign Up Free

πŸ—ΊοΈ Maps - Dictionary

Real Life:

πŸ“– Dictionary: Word β†’ Meaning
πŸ“ž Contacts: Name β†’ Phone
πŸ’° Price List: Item β†’ Price

Syntax

// Create map
prices := make(map[string]int)
prices["apple"] = 50

// Or
scores := map[string]int{
    "Rohan": 95,
    "Simran": 88,
}

πŸ€– AI Tutor Unlock Karo!

Apni language mein coding seekho - Hindi, Marathi, Gujarati aur 10+ Indian languages mein!

  • Hinglish mein explanations
  • Real-life examples
  • Beginner-friendly
Free Signup Karo

Example

ages := map[string]int{
    "Rohan": 25,
    "Simran": 22,
}