Variables inside Functions and Performance

So, performance wise, is it necessary to null references to classes, etc inside a function?

Something like:


 function myFunction():void{
    var myVar:myClass = new myClass();
    //do stuff with myVar...
   
   //don't need myVar anymore
    myVar = null; //is this necessary?
 }