Q1151. What are the differences between Map and Object for storing key-value pairs?
While both Map and Object store key-value pairs, they have significant differences: **Key types:** ```javascript // Object - keys are always strings or symbols const obj ...