assoc: function(arr, value) {
      var i;
      for (i = 0; i < arr.length; i += 1) {
        if (arr[i][0] === value) { return arr[i][1]; }
      }