摘要:Node.js - use hash map
我想使用JavaScript 來儲存HashMap
var hourmap = new Array();
if(hourmap[8]==null)
hourmap[8]=1;
else
hourmap[8]++;
if(hourmap[8]==null)
hourmap[8]=1;
else
hourmap[8]++;
console.log(hourmap[8]);
先建立一個Array
並且判斷如果資料不存在的話,就設一個1進去,若存在,則++。再用console.log列印結果。