0 votes
in Salesforce by
What are Maps in Apex?

1 Answer

0 votes
by
Maps are used to store data in the form of key–value pairs, where each unique key maps to a single value.

Syntax:

Map<String, String> country_city = new Map<String, String>();

Related questions

+1 vote
asked Sep 24, 2019 in Salesforce by Robin
0 votes
asked Feb 3, 2020 in Salesforce by SakshiSharma
...