Hello Friends đź‘‹,

Welcome To Infinitbility! ❤️

Today, we are going to learn how we can add an object in an array, in javascript, and other javascript frameworks.

All below tutorials work on javascript, React, React Native, Vue, Node, Deno, typescript, and all javascript frameworks.

For adding an element in an array we have many options but in this tutorial we will use array.push() this syntax ( push() method ) to add an object.

/*
 * 👋 Welcome to Infinitbility 🚀
 */

let array = [];
let object = {id : 1, name: "infinitbility"};

console.log('array >', array);
console.log('object >', object);

// add obejct in array
array.push(object);
console.log('array >', array);

output

Add object in array, Example

Thanks for reading…