program to append an object to an array. function insertObject(arr, obj) {. // append object. arr.push(obj);. console.log(arr);. }.
確定! 回上一頁