ZILtoid1991@lemmy.world to Programmer Humor@programming.dev · 24 days agoUncle Bob becoming even worse:lemmy.worldimagemessage-square204linkfedilinkarrow-up1533arrow-down112
arrow-up1521arrow-down1imageUncle Bob becoming even worse:lemmy.worldZILtoid1991@lemmy.world to Programmer Humor@programming.dev · 24 days agomessage-square204linkfedilink
minus-squareThirdConsul@lemmy.ziplinkfedilinkarrow-up2·23 days agoPure function = no side effects, no internal state. If you run a pure function twice with the same input, it will give the same output. Example of pure function (a,b) => a+b Example of inpure function let c; (a, b) => { c++; return a+b; }
Pure function = no side effects, no internal state. If you run a pure function twice with the same input, it will give the same output.
Example of pure function
Example of inpure function
let c; (a, b) => { c++; return a+b; }