Answer:
Answer is provided in the explanation section
Step-by-step explanation:
Code:
<script>
var stringStructure = '{ "name": " Andrew ", "height": { "ft": 6, "in": 6 }, "points": 25, "position":
"Small forward" }';
var jsonObject = JSON.parse(stringStructure);
jsonObject.position = "Power forward";
var stringStructure = JSON.stringify(jsonObject);
document.getElementById("demo").innerHTML = stringStructure;
</script>
Running code in editor with output: