Friday , September 20 2024

The condition if( a >= 0 ) can be replaced by the condition:

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

  • if (a > 0 || a == 0);
  • if (!(a > 0 && a == 0));
  • if (a > 0 && a == 0);
  • if (0 < a);

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