27

Men. Live with it.

(Stupid mistakes that kept me from sleeping.. 🤦🏻‍♂️ Lesson learned: Sleep.)

Comments
  • 8
    you could just do return myvar > 0 instead :)
  • 2
    Why not just return $suballocated > 0?

    Edit:
    Oh wait, already suggested ^
  • 3
    You don't even need a ternary operator there.

    Every
    return (i > x) ? true : false;

    can be replaced with
    return (i > x);
  • 1
    Exactly.. fml
Add Comment