Learning JavaScript by Implementing Lodash Methods — Merging Objects

John Au-Yeung
Level Up Coding
Published in
4 min readMay 13, 2020

--

Photo by Jerome Heuze on Unsplash

Lodash is a very useful utility library that lets us work with objects and arrays easily.

However, now that the JavaScript standard library is catching up to libraries such as Lodash, we can implement many of the functions in simple ways.

In this article, we’ll look at how to implement some Lodash object merging methods…

--

--