hardJavaScript

Implement JSON Stringify

Create a simplified version of JSON.stringify. Convert JavaScript objects and arrays into JSON formatted strings.
Ensure function signatures match starter code to run test cases.
index.js
Loading...

Test Case #1

Input: {"name":"John","age":20}

Expected: {"name":"John","age":20}