Skip to content
Advertisement

Tag: initialization

Initialise an object with array properties

How can I initialise an object in JavaScript, the properties of which would be arrays? I want to have an object of this format: My usecase is the following: – When a property does not exist, create this property which should be an array and add a number. – When a property exists already, push the number to that array;

Advertisement