In my application,I use many setTimeout function,so I am afraid if it will cause peformance problem:
setTimeout(function(){
// do something
},0);
And I found people use this manner:
var t=setTimeout(function(){
// do something
clearTimeout(t);
});
I wonder if it is necessary?