JSFiddle - React, Tailwind, and code Playground

HTML

<html>
<body>
test

<div id="value">

</div>
</body>
</html>

JavaScript

alert("Test")
var JSONResponse={
	"id": 1133,
	"name": "Seattle",
	"addressLine1": "Test",
	"city": "Seattle",
	"state": "WA",
	"zip": "98115"
	}
var obj = JSON.parse(JSON.stringify( JSONResponse));

//then you can access it as

var id=obj.id;
var name =obj.name;

alert(id);