Say I have a js object like this;
{'tv':390, 'table':200, 'cup':270, 'chair':325, 'door':300, 'books':290, 'radio':345}
and a second object like so;
{0:30, 1:25, 2:20, 3:35, 4:30, 5:10, 6:15}
How can I for instance perform a division on the first object by the second object per property key? That is {390/30, 200/25, 270/20, ... }
The objects have the same number of properties.