Post #4086310
2026-07-25 11:17 UTC
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
(a,b) => a+b
Example of inpure function
let c;
(a, b) => {
c++;
return a+b;
}
Replies (0)
No replies.