MHLoppy@fedia.io to Programmer Humor · 2 days agoisInHell = 'true'fedia.ioimagemessage-square81fedilinkarrow-up1651arrow-down13file-text
arrow-up1648arrow-down1imageisInHell = 'true'fedia.ioMHLoppy@fedia.io to Programmer Humor · 2 days agomessage-square81fedilinkfile-text
minus-squareFushuan [he/him]@lemm.eelinkfedilinkarrow-up2·2 days agoFyi, using a condition to assign a boolean is equivalent to assigning the condition itself. No need for the IF.
minus-squarejjjalljs@ttrpg.networklinkfedilinkarrow-up2arrow-down1·2 days agotrue, though sometimes i find the more verbose style easier to read, and more maintainable (eg: you want to do something else in the block, you can just add a line instead of changing your ternary / etc). Small things
Fyi, using a condition to assign a boolean is equivalent to assigning the condition itself. No need for the IF.
true, though sometimes i find the more verbose style easier to read, and more maintainable (eg: you want to do something else in the block, you can just add a line instead of changing your ternary / etc). Small things