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