Today i'm facing a really strange behavior, check this out !
const person = [];
person.name = "Hello World"
console.log(person) // [name: "Hello World"]
That is crazy, I just pushed some key - value pair in a javascript array ? Can someone explain to me what just happened ? :)
Have a good day