JavaScript has garbage collection you do not have to explicitly free objects. You can use delete variableThatHoldTheObjector variableThatHoldTheObject = null, but this will reduce the number of object references to 1.
There may be other object references. In short, leave this to GC to handle this for you, since you cannot force it anyway.
About You Comment
delete will delete the variable and therefore the reference to the object it was pointing to.
var foo = 4;
foo;
foo = null;
foo;
delete foo;
foo;
, 1. GC , 0. , bar -, , .