What’s this =! operator? [duplicate]

I was surprised by this code:

if (a =! b) { // let it be on false
    ...
}

But a is never assigned by a value. What’s this operator about?

1Best Answer
13

Leave a Comment