I have a memory related question , is it necessary to delete a setTimeout after using it? (not recursive ones)
 
What's best:
setTimeout('blah()',1)
 
or
myBlah=setTimeout('blah()',1)
delete myBlah
 
or
myBlah=setTimeout('blah()',1)
myBlah=null
 
or
myBlah=setTimeout('blah()',1)
clearTimeout(myBlah);

 
Any ideas?
 
Richard.

Reply via email to