string to object js code example
Example 1: turn object into string javascript
var obj = {a: "a", b: "b" };
var string = JSON.stringify(obj);
Example 2: convert string to object javascript
var mystr = '{ "hello":"world" }'
var myobj = JSON.parse(mystr);
Example 3: change js to json
var obj = {name: "Martin", age: 30, country: "United States"};
var json = JSON.stringify(obj);
console.log(json);
"https://www.tutorialrepublic.com/faq/how-to-convert-js-object-to-json-string.php"
Example 4: convert data into json format in javascript
Use the JavaScript function JSON.parse() to convert text into a JavaScript object:
var obj = JSON.parse('{ "name":"John", "age":30, "city":"New York"}');
Example 5: json_decode javascript
JSON.parse(jsonToDecode)
Example 6: js string to object
JSON.parse()