this post was submitted on 10 Sep 2025
378 points (97.0% liked)
Programmer Humor
26272 readers
1275 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
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
CSS isn't a programming language. Programming languages are logical, follow sensible rules and provide consistent output.
Got it, JS is not a programming language then!
malbolge is a programming language
Object.is(NaN, NaN); // -> true
NaN === NaN; // -> false
Object.is(-0, 0); // -> false
-0 === 0; // -> true
Object.is(NaN, 0 / 0); // -> true
NaN === 0 / 0; // -> false
!![] // -> true
[] == true // -> false
!!null; // -> false
null == false; // -> false
0 == false; // -> true
"" == false; // -> true