In javascript, is is possible to add duplicate keys in object literal? If it is, then how could one achieve it after the object has been first created.
For example:
exampleObject['key1'] = something;
exampleObject['key1'] = something else;
How can I add the second key1 without overwriting the first key1?