国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

JavaScript Associative Arrays

2019-11-17 04:48:01
字體:
供稿:網(wǎng)友

  URL: http://persistent.info/archives/2004/08/27/js-associative-arrays

There seems to be some confusion regarding associative arrays in javascript (i.e. doing searches on the matter turns up many pages giving wrong information). First of all, these arrays (which act as hash tables) have nothing to do with the built-in Array object. They simply rely on the fact that object.PRoperty is the same as object["property"]. This means that the length property is not used, nor do any Array methods (sUCh as join) do anything. In fact, it is better to create the associative array using the generic Object() constructor to make this clearer.The way to iterate over the items in an associate array is to use the for (value in array) construct, allowing you to access each item's value via array[value]. It appears that the order in which properties (i.e. items) are traversed is implementation dependent. The ECMAScript specification is pretty vague on the matter, saying (in section 12.6.4) "Get name of the next property of [the object] that doesn't have the DontEnum attribute. If there is no such property, go to [the end]". Firefox, Safari and MSIE appear to traverse items in the order in which they were inserted, while KHtml (within KDE 3.1) and Opera (at least through 7.54) use a seemingly random order that presumably reflects their respective hashtable implementations.The iteration order can be tested using a very simple code snippet such as this (click here to run it):var items = {"dioxanes": 0, "shunning": 1, "plowed": 2,
"hoodlumism": 3, "cull": 4, "learnings": 5,
"transmutes": 6, "cornels": 7, "undergrowths": 8,
"hobble": 9, "peplumed": 10, "fluffily": 11,
"leadoff": 12, "dilemmas": 13, "firers": 14,
"farmworks": 15, "anterior": 16, "flagpole": 17};

listString = "";
for (var Word in items)
listString += items[word] + ", ";

alert(listString);If the list of numbers appears in ascending order,
then the browser preserves the insertion order. If you are in fact looking to traverse the object's properties in the order they were inserted in, regardless of browser implementation, you'll have to create a (possibly double) linked list that you can use to jump from object to object.

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 广东省| 贞丰县| 峡江县| 镇宁| 湄潭县| 保德县| 醴陵市| 额尔古纳市| 永济市| 沅江市| 都昌县| 宜春市| 大石桥市| 安徽省| 仙游县| 嵊泗县| 玉环县| 彭州市| 长丰县| 兴宁市| 望奎县| 白玉县| 郸城县| 玛曲县| 赞皇县| 邵武市| 孟连| 肇东市| 临泉县| 廉江市| 兴海县| 巴塘县| 永丰县| 栖霞市| 西丰县| 鹤山市| 阳新县| 凤山县| 吴忠市| 华亭县| 望都县|