this post was submitted on 05 May 2025
499 points (98.8% liked)

Programmer Humor

23853 readers
3219 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 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] danda@lemmy.zip 102 points 1 month ago (6 children)

It's because parseInt is expecting a string, so the decimal gets converted to a string, and 0.0000005.toString() returns 5e-7.

[–] spizzat2@lemm.ee 31 points 1 month ago* (last edited 1 month ago) (1 children)

And to further expand on that, if you do pass in a ~~sting~~ string, it handles it correctly.

> parseInt('0.0000005')

0
[–] SpaceNoodle@lemmy.world 18 points 1 month ago* (last edited 1 month ago) (2 children)

What if I pass in a Stewart Copeland?

[–] spizzat2@lemm.ee 9 points 1 month ago

😆 I'll be watching you...

[–] xtools@programming.dev 3 points 1 month ago

or a Honda civic

load more comments (4 replies)