why use the "!!!"?
- by lazyanno
as follow codes:
var a = {};
if(!!!a[tabType]){
a[tabType] = [];
a[tabType].push([self,boxObj]);
}else{
a[tabType].push([self,boxObj]);
}
i think !!!a[tabType] equals !a[tabType]
why use the "!!!" not "!" ?
thank you!