Skip to content

Tag: object

Javascript Object to querystring using reduce

I’m having trouble to apply a reduce to an Object to get it in a querystring format. I want this: So far, the close I have got is this: which gives me: Is there an easier way to achieve this without have to prepend the initialValue and remove the & later? EDIT: This question is old and today we can

Concatenate Object values

I have a JavaScript Object and I’m sure the value of any key is an array (even empty in some case): Aside from using Underscore, is there any way to concatenate all the values of this Object (and create a new array)? At the moment I get the keys name using Object.keys, then I loop and concatenate. Any h…

Javascript – deepEqual Comparison

Question (From Eloquent Javascript 2nd Edition, Chapter 4, Exercise 4): Write a function, deepEqual, that takes two values and returns true only if they are the same value or are objects with the same properties whose values are also equal when compared with a recursive call to deepEqual. Test Cases: My code:…

Sum similar keys in an array of objects

I have an array of objects like the following: I need to add up all the values for objects with the same name. (Probably also other mathematical operations like calculate average.) For the example above the result would be: Answer First iterate through the array and push the ‘name’ into another ob…