Comparison of programming languages (associative array): Difference between revisions

Content deleted Content added
Line 517:
String[String]
</source>
denotes an associative array of strings indexed by strings.
 
denotes an associative array of strings indexed by strings.
 
<source lang="java">
phoneBook[key]
</source>
access a value by a key. For example, you can interate over values with the following code:
 
For example, you can interate over values with the following code:
 
<source lang="java">