ZILtoid1991@lemmy.world to Programmer Humor@programming.dev · 1 month agoUncle Bob becoming even worse:lemmy.worldimagemessage-square224fedilinkarrow-up1535
arrow-up1535imageUncle Bob becoming even worse:lemmy.worldZILtoid1991@lemmy.world to Programmer Humor@programming.dev · 1 month agomessage-square224fedilink
minus-squareThirdConsul@lemmy.ziplinkfedilinkarrow-up2·1 month 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; }