我有两个数组,我将它们实例化为对象。我想连接这两个数组,我想通过引用来做。有没有办法做到这一点?我知道对象是通过引用的,但据我所知。
// array 1
function gdb() {
this.data = [{
"id":"AA",
"pos": "0"
},
{
"id":"AB",
"pos":"3"
}
]
;
}
// array 2
function xdb() {
this.data = [{
"id":"CM",
"pos": "4"
},
{
"id":"CR",
"pos":"7"
}
]
;
}
// arrays combined
function gdb() {
this.data = [{
"id":"AA",
"pos": "0"
},
{
"id":"AB",
"pos":"3"
},
{
"id":"CM",
"pos": "4"
},
{
"id":"CR",
"pos":"7"
}
]
;
}