const fetchData = Object { data: [], status: 200, statusText: "OK", headers: {…}, config: {…}, request: {} }
How do i add below object into above fetchdata.data object
const priceModel = {id:1, name:"abc"}
result should be like below
const fetchData = Object { data: {[], priceModel:{id:1, name:"abc"}}, status: 200, statusText: "OK", headers: {…}, config: {…}, request: {} }