Here is a minified example of my problem:
var myObj = {hello: {bye: "bye"} };
JSON.stringify(myObj, ['hello']);
returns "{"hello": {}}"
How can I access nested objects using the replacer array parameter?
I researched posts demonstrating the "data" parameter in an ajax request, I am not making an ajax request, I am reading json, filtering properties, and writing the results to a new file.