I'm trying to assign an object value to a variable that is defined later in my code (in other words, assigne the value to an address), such as:
var memory;
var object = {};
object.mem = memory;
memory = 'hop';
console.log(object.mem);
would return 'hop'