Estoy utilizando una tabla hash en JavaScript, y quiero mostrar los valores de la siguiente en una tabla hashtabla hash en JavaScript
one -[1,10,5]
two -[2]
three -[3, 30, 300, etc.]
He encontrado el siguiente código. Funciona para los siguientes datos.
one -[1]
two -[2]
three-[3]
¿Cómo asigno uno- [1,2] valores a una tabla hash y cómo puedo acceder a ella?
<script type="text/javascript">
function Hash()
{
this.length = 0;
this.items = new Array();
for (var i = 0; i < arguments.length; i += 2) {
if (typeof(arguments[i + 1]) != 'undefined') {
this.items[arguments[i]] = arguments[i + 1];
this.length++;
}
}
this.removeItem = function(in_key)
{
var tmp_value;
if (typeof(this.items[in_key]) != 'undefined') {
this.length--;
var tmp_value = this.items[in_key];
delete this.items[in_key];
}
return tmp_value;
}
this.getItem = function(in_key) {
return this.items[in_key];
}
this.setItem = function(in_key, in_value)
{
if (typeof(in_value) != 'undefined') {
if (typeof(this.items[in_key]) == 'undefined') {
this.length++;
}
this.items[in_key] = in_value;
}
return in_value;
}
this.hasItem = function(in_key)
{
return typeof(this.items[in_key]) != 'undefined';
}
}
var myHash = new Hash('one',1,'two', 2, 'three',3);
for (var i in myHash.items) {
alert('key is: ' + i + ', value is: ' + myHash.items[i]);
}
</script>
¿Cómo lo hago?
teclas = Object.keys (myHash) dará una una matriz de las teclas, por lo que en este caso sería volver ['uno dos tres']. Puede iterar en ellos usando for (var i = 0; i
zupa
No encuentro Hash en javascript. (El hash no está definido.) ¿Puede proporcionar el enlace – jforjs
@jforjs? Se refiere a la función Hash declarada en la pregunta. "Usando la función de arriba ..." – estevan