Make a JSON string from the object below:
Deep Copying Objects
JSON string
Report a typo
Sample Input 1:
Sample Output 1:
{"a":123,"b":["c","d"]}Write a program in JavaScript
const obj = { a: 123, b: ['c', 'd' ] };
const jsonString = //write your code here
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.