Memory Management & Garbage Collection

After executing this code, what happens to the object that was originally assigned to 'a'?
let a = { x: 10, y: 20 };
let b = a;
a = null;
Next Question (4/40)