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.
Python has a popular library called “Flask” that uses stringify(). Although, python also has an implementation in its standard library called jason.dumps()
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
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.
It is recognisable, with that I agree
Python has a popular library called “Flask” that uses stringify(). Although, python also has an implementation in its standard library called jason.dumps()
Not sure but with Ruby it was JSON.generate(ruby_array/hash/object).
And it returned - JSON string of your argument.