**I love coding, learning, teaching, more and more.**
At the beginning, an array has 0 elements.
const you = []
Due to learning, array is going to have new elements.
you.push({...})
You can think human is like arrays. You start with []. If you don't learn anything, you still stay at [].
console.log(you) // []
But if you try to learn, you declare your knowledge. As adding elements into array then the array has more length [{},{},...]
console.log(you) // [{...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, ...]
All of us have our own arrays. And Objects are the things we will can learn.
**So, I always try to learn something to have more objects in my array.**