ZILtoid1991@lemmy.world to Programmer Humor@programming.dev · 3 days agoUncle Bob becoming even worse:lemmy.worldimagemessage-square223fedilinkarrow-up1526
arrow-up1526imageUncle Bob becoming even worse:lemmy.worldZILtoid1991@lemmy.world to Programmer Humor@programming.dev · 3 days agomessage-square223fedilink
minus-squareThirdConsul@lemmy.ziplinkfedilinkarrow-up2·2 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; }