I have array containing objects and I want to add a new object to it.
//here is my array
var countries = [
{ start: 20.2, end: 20.7, country_name: "United States" },
{ start: 20.7, end: 21.2, country_name: "Canada" }
]
//new object to push in this array
{ start: 23.2, end: 23.7, country_name: "Peru" }