DEV Community

Discussion on: Enhance your JS Skill by using the correct array method

Collapse
 
thomasjunkos profile image
Thomas Junkツ

And then there is reduceRight which helped me a lot back in 2012 when we had input fields like customer.billingadress.street and had to parse that to {"customer":{"billingadress":{"street": $customer.billingadress.street.value}}}

Collapse
 
codeoz profile image
Code Oz

Nice usage of reduceRight!