Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What syntax were we emulating with this code?
a = a || 3;
b = b || 4;
[a, b] = [3, 4];
a = 3;
b = 4;
a = a && 3;
b = b && 4;
a = b = 3;
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!