Skip to content
Advertisement

How to append a property to another property of type object in JavaScript

I am trying to figure out how to append a new value to the same property of an object. I have this code below:

JavaScript

The value [member.displayName] changes every for loop, and I want every loop to create a new value within [todaysDate] with [member.displayName] property name.

It currently replaces property names with the next name from the row, instead of adding a new property, and at the end of the for loop, it only saves the last name from the row.

JavaScript

However, I want to make it look like this:

JavaScript

Advertisement

Answer

You’re resetting xp_logs[todaysDate] to an empty object each time through the loop. You should only do that if the property doesn’t already exist.

Also, for loops should use the condition i < rows.length;, not i <= rows.length;. Array indexes go from 0 to length-1. With this fix you don’t need the extra check if (rows[i]), which was only needed to skip the iteration after the end of the array.

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement