Código
function Map() { this.keys = new Array(); this.data = new Object(); this.datos = new Array(); this.put = function (key, value) { if (this.data[key] == null) { this.keys.push(key); } datos.push(value); this.data[key] = datos; }; this.get = function (key) { return this.data[key]; }; }
quiero que cada llave tenga un arreglo de datos