473,388 Members | 1,557 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,388 software developers and data experts.

Associative array

I am curious why some people feel that Javascript doesn't have
associative arrays. I got these definitions of associative arrays via
goggle:

Arrays in which the indices may be numbers or strings, not just
sequential integers in a fixed range.
http://www.sunsite.ualberta.ca/Docum...r/gawk_20.html

(n.) A collection of data (an array) where individual items can be
indexed (accessed) by a string, rather than by an integer as is common
in most programming languages.
docs.sun.com/db/doc/805-4368/6j450e60a

(n.) A collection of data (an array) where individual items may be
indexed (accessed) by a string, rather than by an integer as is common
in most programming languages.
www.npac.syr.edu/nse/hpccgloss/hpccgloss.html

Another name for a dictionary.
academics.tjhsst.edu/compsci/thinkCS/chap19/node11.html
My goggle search:
http://www.google.com/search?hl=en&l...ociative+Array
It seems to me that both javascript arrays and object meet these
definitions.

One problem with Javascript would be the extra indexes automatically
created but you can check for them if you need too.
Maybe I am missing something.

Robert

Jul 23 '05 #1
4 2639
Robert wrote:
I am curious why some people feel that Javascript doesn't have
associative arrays.


Because Javascript, JScript nor ECMAScript have associative arrays.

Pretty good reason don't you think?

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq
Jul 23 '05 #2
On 9 Dec 2004 15:09:07 -0800, Robert <rc*******@my-deja.com> wrote:
I am curious why some people feel that Javascript doesn't have
associative arrays.
The behaviour has nothing to do with arrays. The misconception arises
because "associative arrays" are introduced thus:

var arr = new Array();

arr['name'] = 'value';

However, you can't apply any Array method to that object and expect it to
act upon 'name' as it's not part of the array; it's part of the object
itself. The same outcome is achieved with:

arr.name = 'value';

The main difference between the two approaches is that with dot notation,
each token must conform to the rules of an identifier. With square bracket
notation, the operand is any valid expression.

I presume that many script authors are unaware that you can use square
brackets to construct property names because the fact that this is what
you're actually doing - accessing object properties - is never discussed.
It's hidden among this illusion.

The fact of the matter is: ECMAScript does not have them. To produce a
robust system of storage you have to write at least *some* supporting
code, which immediately draws attention to the fact that ECMAScript
doesn't provide this functionality natively.

If it helps in some way to think of associative arrays, fine. However,
make sure you know what is really happening behind the scenes.

[snip]
docs.sun.com/db/doc/805-4368/6j450e60a
When posting URLs, please post them in full. Preferably surrounded by
<URL:...>:

<URL:http://docs.sun.com/db/doc/805-4368/6j450e60a>

[snip]
It seems to me that both javascript arrays and object meet these
definitions.
Loosely, perhaps. However, these terms are applied to languages which
feature arrays that can be indexed by strings and numbers. You just aren't
doing that with ECMAScript: an array is *just* an array.
One problem with Javascript would be the extra indexes automatically
created
[Aside]
It's interesting to see you refer to the "extra indexes". Either that's a
Freudian slip, or potential proof of the misconception I mentioned earlier.
[/Aside]
but you can check for them if you need too.


How? You can't enumerate them, and you can never be sure of all of the
properties and methods that will be present. It's best to avoid the issue
entirely by modifying the name you use so that it will never clash with an
existing property.

[snip]

Mike

--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.
Jul 23 '05 #3
"Michael Winter" <M.******@blueyonder.co.invalid> wrote:
The behaviour has nothing to do with arrays. The misconception arises
because "associative arrays" are introduced thus:

var arr = new Array();

arr['name'] = 'value';


Maybe one can show the misconception like this:

var arr = new Array();

(1) arr['name'] = 'value';

Now it looks like one added a key/value pair to a hash.

Array() has methods like pop() or push(), lets give the "hash datatype"
some as well.

(2) arr['keys'] = getkeys; // function defined elsewhere
// The same as arr.keys = getkeys

so now, arr.keys() should get the keys of the hash.

But wait:

arr['foo'] = bar is the way to add a key/value pair.

So (2) should just do this and the hash should contain

'name' = 'value'
'keys' = getkeys

But this is wrong as well.

'keys' should not be a data of the hash. It should be a method like
pop() for accessing the data of a hash.

And yes, it is perfectly OK for a hash to hold functions.
So this is a conflict it the alleged semantics of these
assignment. The reason for the conflict is, that there is no native
hash type in Javascript.

Bye,
Martin
Jul 23 '05 #4
In article <11**********************@z14g2000cwz.googlegroups .com>,
Robert <rc*******@my-deja.com> writes
I am curious why some people feel that Javascript doesn't have
associative arrays.
One reason is that there are two meanings and no-one knows which is
being used. 'Associative array' can describe a very general kind of
storage unit, just as 'stack' can be a very general description.
Alternatively, 'associative array' can be a particular data type
supplied as part of a computer language. You can get some lovely
never-ending arguments if people are using these different meanings.

I got these definitions of associative arrays via
goggle:

Arrays in which the indices may be numbers or strings, not just
sequential integers in a fixed range.
http://www.sunsite.ualberta.ca/Docum...r/gawk_20.html

(n.) A collection of data (an array) where individual items can be
indexed (accessed) by a string, rather than by an integer as is common
in most programming languages.
docs.sun.com/db/doc/805-4368/6j450e60a

(n.) A collection of data (an array) where individual items may be
indexed (accessed) by a string, rather than by an integer as is common
in most programming languages.
www.npac.syr.edu/nse/hpccgloss/hpccgloss.html
Back in the 60s when people were discussing hardware associative arrays
the 'address', or key, or index, was just a bit pattern supplied by the
user. The user might think it was ASCII characters or a floating point
number or whatever, but the hardware couldn't care less.

When an associative array is implemented in software the 'address' has
to be a defined type so the compiler/interpreter knows how to allocate
the right amount of storage when creating a cell, but it still isn't
restricted to integers and strings.

Another name for a dictionary.
academics.tjhsst.edu/compsci/thinkCS/chap19/node11.html
A dictionary is a particular kind of associative array. The 'address' is
a word; the value is a chunk of text.

But then people have used 'dictionary' in a more general way. 'Map' is
another popular name.

My goggle search:
http://www.google.com/search?hl=en&l...ociative+Array
It seems to me that both javascript arrays and object meet these
definitions.

One problem with Javascript would be the extra indexes automatically
created but you can check for them if you need too.
Maybe I am missing something.


True. Both Object objects and Array objects have their good points and
their bad points if your javascript application needs to implement an
associative array.

John
--
John Harris
Jul 23 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Stefan Richter | last post by:
Hi, I want to create an associative Array with a PHP variable (article ID) as Key and another associative array as it's value. How do I instanciate it, how can I fill it? I want something...
27
by: Abdullah Kauchali | last post by:
Hi folks, Can one rely on the order of keys inserted into an associative Javascript array? For example: var o = new Object(); o = "Adam"; o = "Eve";
6
by: mark4asp | last post by:
Suppose I have the following code. It functions to randomly select a city based upon the probabilities given by the key differences in the associative array. . Eg. because the key difference...
8
by: Derek Basch | last post by:
Is there any way to associate name/value pairs during an array initialization? Like so: sType = "funFilter" filterTypeInfo = ; filterTypeInfo = new Array("type" : sType); I can do it using...
47
by: VK | last post by:
Or why I just did myArray = "Computers" but myArray.length is showing 0. What a hey? There is a new trend to treat arrays and hashes as they were some variations of the same thing. But they...
5
by: soup_or_power | last post by:
Hi I have an associative array like this: arr=30; arr=20;arr=40;arr=10; I want the sort function to sort keys in ascending order of the values on the right hand side with the following result:...
7
by: Robert Mark Bram | last post by:
Hi All! How do you get the length of an associative array? var my_cars= new Array() my_cars="Mustang"; my_cars="Station Wagon"; my_cars="SUV"; alert(my_cars.length);
41
by: Rene Nyffenegger | last post by:
Hello everyone. I am not fluent in JavaScript, so I might overlook the obvious. But in all other programming languages that I know and that have associative arrays, or hashes, the elements in...
11
by: Bosconian | last post by:
I'm trying to output the contents of an array of associative arrays in JavaScript. I'm looking for an equivalent of foreach in PHP. Example: var games = new Array(); var teams = new...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.