Is there a & logical operator in Javascript

No. & is a bitwise AND operator. && is the only logical AND operator in Javascript.

Leave a Comment