this post was submitted on 24 Jul 2026
527 points (97.8% liked)

Programmer Humor

32477 readers
430 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 3 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] ThirdConsul@lemmy.zip 2 points 2 days ago

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;
}