JavaScript Data Structures - Array Object |
Written by Ian Elliot | |||||||
Thursday, 05 January 2017 | |||||||
Page 3 of 3
Array and associative arrayNow we come to a little controversy. The Array object is still an object and as such it can be used as an associative array. The associative nature of the Javascript Array is supplied via inheritance from the more general Object and it can be argued that it is accidental. Every object in Javascript is an associative array, but the Array object is crafted to work with integer indices - so don't use it for an associative array. After all, its additional facilities don't work well with the basic associative features. For example if you try:
you will discover that length is zero. The point is that integer properties are treated differently from associative properties. There is also no direct way of creating an associative array via a literal. for example while you can write:
This creates an object A. If you try:
then you get an error because an Array literal can't be declared as an associative array. Similarly:
declares a standard Array indexed as a[0]="A" and so on. However
just generates an error message because objects need name value pairs to initialise them. So the argument goes that the Array object is not to be used as an associative array because it was created to act as an integer indexed array. However things aren't quite this simple. Consider the way that you can reference object properties following:
You can refer to property B in either of two ways A.B or A["B"]. This is strange because [] is the array dereferencing operator and you can use this on any object, not just an Array object. This confuses the issue. However you can't refer to an array element using property notation even though the indices are stored as valid object properties. That is, A.0 doesn't work even though A does have a property called numeric zero. The best way way to understand all this is to realize that an Array object is an associative array that has integer valued properties and this makes it special. The best advice is - don't use an Array object as a general associative array unless you need to mix string and numeric indices. In general an Array is an array and an Object is an associative array.
|
JavaScript Canvas - Fetch API Working with lower-level data is very much part of graphics. This extract from Ian Elliot's book on JavaScript Graphics looks at how to use typed arrays to access graphic data. |
JavaScript Jems - The Inheritance Tax JavaScript should not be judged as if it was a poor version of the other popular languages - it isn't a Java or a C++ clone. It does things its own way. In particular, it doesn't do inheritance [ ... ] |
Other Articles |
Comments
or email your comment to: comments@i-programmer.info
<ASIN:0596806752>
<ASIN:0321812182>
<ASIN:1491901888>
<ASIN:144934013X>
<ASIN:193398869X>
<ASIN:1449373216>