Sometimes, we want to declare array of objects with JavaScript.
In this article, we’ll look at how to declare array of objects with JavaScript.
How to declare array of objects with JavaScript?
To declare array of objects with JavaScript, we declare an array with object literals.
For instance, we write
const sample = [{}, {}, {} /*, ... */];
to declare the sample
array with empty objects inside it.
Conclusion
To declare array of objects with JavaScript, we declare an array with object literals.