{"ScriptPreparationCode":"myObj = {a: 1, b: 2, c: 3}","TestCases":[{"Name":"Using Object.assign","Code":"const newObjectA = Object.assign({}, myObj)","IsDeferred":false},{"Name":"Using spread operator","Code":"const newObjectB = {...myObj}","IsDeferred":false},{"Name":"Using a plain initialization","Code":"const newObjectC = JSON.parse(JSON.stringify(myObj))","IsDeferred":false}]}