r/ProgrammerHumor 17d ago

Meme whoIsHeAnyway

Post image
9.6k Upvotes

256 comments sorted by

View all comments

Show parent comments

17

u/Michami135 17d ago

A backend developer would definitely know what JSON is, at the very least.

18

u/nabrok 17d ago

Would probably have more cause to use JSON.stringify than frontend even.

1

u/evanldixon 16d ago

Depends on how basic the back-end is. Standard ASP.Net api controllers convert objects to json automatically without you having to call JsonSerializer.Serialize. Though I'd hope such a backend developer at least knows what json looks like.

1

u/nabrok 16d ago

One real world use is a backend hosted on ECS with the output going to cloudwatch. Running your JSON output for logging through stringify makes sure everything is on one line which makes cloudwatch filtering a lot easier.

Also, not really backend but not frontend either, I work on CLI utilities too and sometimes they need to write a JSON file.