Implement `jsonStringify(value)` that serializes a value to a JSON string, matching the built-in `JSON.stringify` for: `null`, numbers, booleans, strings (escaping `\`, `"`, and newlines), arrays, and plain objects. Object keys keep their insertion order. You may assume no functions, `undefined`, or circular references appear at the top level.
+ 2 hidden tests run on Submit.
JSON serialization is a recursive structural walk. Primitives map to their textual forms (strings need escaping), arrays join their serialized elements in brackets, and objects join `"key":value` pairs in braces. Reusing the function for keys and nested values keeps the implementation small and correct.
Run your code to see results.