Quiz: What Do You Think About This Code?
- The conditions are in the wrong order
- The
if (price <= 100)should beif (price < 100) - There shouldn't be
if (price <= 100) - There is nothing wrong
if (price <= 100) should be if (price < 100)if (price <= 100)