• spader312@lemmy.world
    link
    fedilink
    arrow-up
    10
    ·
    11 months ago

    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) {
        ...
    }