Garbage collection



Basically, the objects have a reference count. The object's reference-count gets zero when there is no longer reference.

If object's reference count is zero, it is marked for garbage collection. Garbage collector picks up these objects for deletion, and frees up space.

Additionally want to know this:
What is difference between Eval() and Bind()