What does this operator !!~
mean in typescript? Is it a combination of a bitwise operator and NOT operators?
eg return strict ? term === strValue : !!~strValue.indexOf(term);
What does this operator !!~
mean in typescript? Is it a combination of a bitwise operator and NOT operators?
eg return strict ? term === strValue : !!~strValue.indexOf(term);