How can I print a value of an object using JSON.stringify() without the curly brackets and quote marks.
For example when I do this:
var string = "this is a string";
var test = JSON.stringify(myJsonObject);
div.innerHTML = test;
the output is this:
{"value":" this is a string"}
How can I output only the actual string without anything else?
i.e :
this is a string
If your object looks like:
myObject = {"value": " this is a string"};
You don't need to stringify to get the string value, you can use this instead:
myObject.value