I need to extract the key value pairs from the order
object and i want it to be combined to formData
Code
const formData = {
avatar: this.image,
documents: this.order.documents,
Object.entries(orders)
};
Expected Output
avatar: 'http://images',
document: 'http://document',
Name: 'John Doe',
Food: 'Banana'
Object
orders: {
'Name': 'John Doe',
'Food': 'Banana'
}