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

Content deleted Content added
Line 479:
See [http://blog.metawrap.com/blog/June6thIsJavaScriptArrayAndObjectprototypeAwarenessDay.aspx JavaScript Array And Object Prototype Awareness Day] for more information on the issue.
 
===KornShell 93 (and compliant shells: ksh93, zsh, bash4...)===
<!-- Tested in ksh93 r -->
 
Line 485:
 
typeset -A phonebook; # ksh93
declare -A phonebook; # bash 4bash4
phonebook=(["Sally Smart"]="555-9999" ["John Doe"]="555-1212" ["[[J. Random Hacker]]"]="555-1337");