add object to array typescript without the content change code example
Example: js add element to array
var fruits = [ "Orange", "Apple", "Mango"];
fruits.push("Banana");
var fruits = [ "Orange", "Apple", "Mango"];
fruits.push("Banana");