This is my array data :
var service: [{
id: '1',
name: 'gana',
age: '21',
spare: 'rinch',
}];
I want to add an static empty array inside of this data,
It is possible to insert the empty arry into another array using the map function?
my expected result is :
var service: [{
id: '1',
name: 'gana',
age: '21',
spare: 'rinch',
all:[]
}];
Give any solution or idea for me.