this post was submitted on 11 Mar 2025
-7 points (43.4% liked)

Programmer Humor

22186 readers
1607 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
[–] towerful@programming.dev 8 points 3 weeks ago

The value after the : isn't in double/single quotes, so it is a literal value. Thus, a float value will be parsed as a float. Whether it is 1E-5 or 0.00001. They are numerically equivalent, but not stringly equivalent.

If you are having errors parsing your JSON, then use a proper JSON library instead of trying to roll your own.