JS 中ArrayBuffer拼接

js中 如何将两个arrayBuffer拼接起来

// 监听低功耗蓝牙设备的特征值变化 
    plus.bluetooth.onBLECharacteristicValueChange(function(e){
        console.log('onBLECharacteristicValueChange: '+JSON.stringify(e));
        var value =e.value; 
        console.log("字节长度="+value.byteLength);
        if(characteristicId == e.characteristicId){
            // 更新到页面显示
            console.log('特征值变化: '+ ab2str(value));
        }
    });

由于蓝牙一次最多返回20个字节 我现在需要将arraybuffer组合起来 但是不知道怎么操作跟js传统的array有点出入

https://blog.csdn.net/y523006369/article/details/103529700