• 0 Posts
  • 13 Comments
Joined 1 year ago
cake
Cake day: July 6th, 2023

help-circle







  • A form of “self documentation” I like to do is create variables for conditions before using it in an if statement. If you break down a funky conditional into easy to read variables it becomes a lot more clear what it’s trying to do.

    Idk how to write code on sync:

    const isHumid = xxxx;
    const isHot = yyyy;
    const isSunny = zzzzz;
    
    If (isHot && isHumid && isSunny) {
        ...
    }