Hell,
I have this line...
const tempStage = Object.assign({}, stage)
stage is an object type. Whenever I manipulate tempStage it affects stage.
Doing something like this for example changes the corresponding value in stage...
tempStage['$']['stageid']= "1234"
Can I get these two things to be independent of one another?