this post was submitted on 12 Aug 2026
999 points (97.6% liked)

Programmer Humor

33090 readers
1925 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
[–] sukhmel@programming.dev 3 points 3 weeks ago (3 children)

Are there any other languages that would also have Json.Stringify? I only read JS sometimes and never write those, so I may be wrong about that.

JSON itself is fine, yeah

[–] jaybone@lemmy.zip 2 points 3 weeks ago (1 children)

To add to other replies, I think there are some Java libraries that use this method name, or close to it. It’s so common that the term is well recognized on its own, regardless of the exact method names in whatever library or language.

[–] sukhmel@programming.dev 1 points 3 weeks ago

It is recognisable, with that I agree

[–] anomnom@sh.itjust.works 2 points 3 weeks ago* (last edited 3 weeks ago)

Not sure but with Ruby it was JSON.generate(ruby_array/hash/object).

And it returned - JSON string of your argument.

[–] DaleGribble88@programming.dev 2 points 3 weeks ago* (last edited 3 weeks ago)

Python has a popular library called "Flask" that uses stringify(). Although, python also has an implementation in its standard library called jason.dumps()