• rooster_butt@lemm.ee
      link
      fedilink
      arrow-up
      2
      ·
      8 hours ago

      Short circuiting conditions is important. Mainly for things such as:

      if(Object != Null && Object.HasThing) …

      Without short circuit evaluation you end up with a null pointer exception.