I have an Object:
public countriesSignup = [{
name: 'countries',
options: [
{text: 'Customer', value: '1'},
]
}];
My Final Object must be:
countriesSignup = [{
name: 'countries',
options: [
{text: 'Customer', value: '1'},
{text: 'Contractor', value: '2'},
]
}];
How i can add from Controller? I try this:
this.countriesSignup['options'] = [{text: 'Contractor', value: '2'}] ;