this post was submitted on 15 Jul 2025
458 points (94.9% liked)

Programmer Humor

37269 readers
31 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] olafurp@lemmy.world 13 points 5 days ago* (last edited 5 days ago) (1 children)

I'll join in

const isEven = (n) 
  => !["1","3","5","7","9"]
    .includes(Math.round(n).toString().slice(-1)) 
[โ€“] Two9A@lemmy.world 4 points 4 days ago

I've actually written exactly that before, when I needed to check the lowest bit in an SQL dialect with no bitwise operators. It was disgusting and awesome.