Using JavaScript to process data
I used to ask a fellow developer, what would you do if you had some data represented in a JSON array, and you’d like to do some very quick and simple processing, to find out the information you are interested in? He said he’d write a Golang program to do that. While there’s nothing wrong with that approach, I think this method is too slow. It will take you at least 10 minutes to write and test a Golang program, especially considering you will need to define all the structs before you can parse the JSON data....