🔰double tilde (~~)
Last updated
Last updated
JS ⟩ statement ⟩ expression ⟩ operator ⟩ double tilde (~~)
nearest integer towards 0.
it's not really an operator, it's just ~~x === ~(~x)
.
bitwise operator ⟩ bitwise not (~) - invert bits.
unary arithmetic operator ⟩ unary plus (+)
unary logical operator ⟩ logical not (!)