Contact: aviboots(AT)netvision.net.il
41,857 questions
54,547 answers
573 users
let array = [1, 2, 3, 4]; let object = {x: 33, y: 55}; array.push(object); console.log(array); /* run: [1, 2, 3, 4, { x: 33, y: 55 }] */
let array = [1, 2, 3, 4]; let object = {x: 33, y: 55}; const index = array.length; array.splice(index, 0, object); console.log(array); /* run: [1, 2, 3, 4, { x: 33, y: 55 }] */