I need to merge two arrays with objects inside with JavaScript.
How can this be done?
I am currently using this code, but it is not for me:
var array_merge = [];
var array_one = [
  {
    label: "label",
    value: "value",
  },
  {
    label: "label",
     value: "value",
  },
];
array_merge.push(array_one);
var array_two = [
  {
    label: "label",
    value: "value",
  },
  {
    label: "label",
     value: "value",
  },
];
array_merge.push(array_two);
How can I join them so that the result is the following?
var array_merge = [
  {
    label: "label",
    value: "value",
  },
  {
    label: "label",
    value: "value",
  },
  {
    label: "label",
    value: "value",
  },
  {
    label: "label",
    value: "value",
  },
];
Thanks.
 
    