Can someone please clarify the rule of filtering?
property z is not being stringified properly, see last line pls.
MDN says "if an array, specifies the set of properties included in objects in the final string."
var obj = {x:1,y:'str',z:{a:1,b:2}};
var s = JSON.stringify(obj)
"{"x":1,"y":"str","z":{"a":1,"b":2}}"
var s = JSON.stringify(obj,["x","y","z"]);
"{"x":1,"y":"str","z":{}}" //z empty object why?