Skip to content

Instantly share code, notes, and snippets.

@luk-
Created March 26, 2011 02:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luk-/887959 to your computer and use it in GitHub Desktop.
Save luk-/887959 to your computer and use it in GitHub Desktop.
var key = [];
var val = [];
var hashtable = [];
var i = 0;
function add(k,v){
//Hashtable[k] = val.length;
sub = [k, i];
hashtable.push(sub);
key.push(k);
val.push(v);
i++;
}
function get(k){
for (var i = 0; i < hashtable.length; i++) {
if(hashtable[i][0] == k) {
pos = hashtable[i][1];
return val[pos];
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment