alphacyberranger to Programmer [email protected]English • 1 year agoMore the merrierimagemessage-square75arrow-up11.28Karrow-down113
arrow-up11.26Karrow-down1imageMore the merrieralphacyberranger to Programmer [email protected]English • 1 year agomessage-square75
minus-square@spader312link10•1 year agoA 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) { ... }
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) { ... }