var attr = ~'input,textarea'.indexOf( target.tagName.toLowerCase() )
? 'value'
: 'innerHTML'
I saw it in an answer, and I've never seen it before.
What does it mean?
var attr = ~'input,textarea'.indexOf( target.tagName.toLowerCase() )
? 'value'
: 'innerHTML'
I saw it in an answer, and I've never seen it before.
What does it mean?
The
~
is Bitwise NOT Operator,~x
is roughly the same as-(x+1)
. It is easier to understand, sort of. So:Consider
-(x+1)
.-1
can perform that operation to produce a0
.In other words,
~
used with a range of number values will produce afalsy
(coerce tofalse
from0
) value only for the-1
input value, otherwise, any othertruthy
value.As we know,
-1
is commonly called a sentinel value. It is used for many functions that return>= 0
values for success and-1
for failure inC
language. Which the same rule of return value ofindexOf()
in JavaScript.It is common to check of presence/absence of a
substring
in anotherstring
in this wayHowever, it would be more easily to do it through
~
as belowYou Don't Know JS: Types & Grammar by Kyle Simpson
Using it before an
indexOf()
expression effectively gives you a truthy/falsy result instead of the numeric index that's directly returned.If the return value is
-1
, then~-1
is0
because-1
is a string of all 1 bits. Any value greater than or equal to zero will give a non-zero result. Thus,will cause the
if
code to run when "something" is in "someString". If you try to use.indexOf()
as a boolean directly, then that won't work because sometimes it returns zero (when "something" is at the beginning of the string).Of course, this works too:
and it's considerably less mysterious.
Sometimes you'll also see this:
Using the
~
operator twice like that is a quick way to convert a string to a 32-bit integer. The first~
does the conversion, and the second~
flips the bits back. Of course if the operator is applied to something that's cannot be converted to a number, you getNaN
as a result. (edit — actually it's the second~
that is applied first, but you get the idea.)~
is a bitwise operator that flips all bits in its operand.For example, if your number was
1
, its binary representation of the IEEE 754 float (how JavaScript treats numbers) would be...So
~
converts its operand to a 32 bit integer (bitwise operators in JavaScript do that)...If it were a negative number, it'd be stored in 2's complement: invert all bits and add 1.
...and then flips all its bits...
It has a quite a few uses. If you're writing low level stuff, it's handy. If you profiled your application and found a bottleneck, it could be made more performant by using bitwise tricks (as one possible tool in a much bigger bag).
It's also a (generally) unclear trick to turn
indexOf()
's found return value into truthy (while making not found as falsy) and people often use it for its side effect of truncating numbers to 32 bits (and dropping its decimal place by doubling it, effectively the same asMath.floor()
for positive numbers).I say unclear because it's not immediately obvious what it is being used for. Generally, you want your code to communicate clearly to other people reading it. While using
~
may look cool, it's generally too clever for its own good. :)It's also less relevant now that JavaScript has
Array.prototype.includes()
andString.prototype.includes()
. These return a boolean value. If your target platform(s) support it, you should prefer this for testing for the existence of a value in a string or array.~indexOf(item)
comes up quite often, and the answers here are great, but maybe some people just need to know how to use it and "skip" the theory:For those considering using the tilde trick to create a truthy value from an
indexOf
result, it is more explicit and has less magic to instead use theincludes
method onString
.Note that this is a new standard method as of ES 2015 so it won't work on older browsers. In cases where that matters, consider using the String.prototype.includes polyfill.
This feature is also available for arrays using the same syntax:
Here is the Array.prototype.includes polyfill if you need older browser support.