Login
Remember
Register
Ask a Question
What are Maps in Apex?
0
votes
asked
Feb 3, 2020
in
Salesforce
by
SakshiSharma
What are Maps in Apex?
#salesforce-apex
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Feb 4, 2020
by
rajeshsharma
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>();
...