Friday , September 20 2024

The condition if (!a) can be replaced by the condition:

Questions BankCategory: JavaScript Essentials 1The condition if (!a) can be replaced by the condition:
The condition if (!a) can be replaced by the condition:

  • if (a == false);
  • if (a === false);
  • if (!!a);
  • if (a);

More Questions: JavaScript Essentials 1 – JSE1: Module 4 Test