If you want to destroy an object when its health reaches 0, What code would be best in the blank below?
1) if (health == 0) { destroyObject(); }
2) if (health ≤ 0) { destroyObject(); }
3) if (health < 0) { destroyObject(); }
4) if (health > 0) { destroyObject(); }