DEV Community

Discussion on: Let's talk about Lodash

Collapse
 
andrenbrandao profile image
André Brandão • Edited

Hi Laurie, great article! I think I might have found a typo. Shouldn't the lines that have

const obj = { a: 1, b: { c: 3, d: 4 } }
Enter fullscreen mode Exit fullscreen mode

actually be the following?

const obj = { a: { b: { c: 3, d: 4 } } }
Enter fullscreen mode Exit fullscreen mode
Collapse
 
laurieontech profile image
Laurie

Ah ya, based on how I access it later that’s correct. I made the examples too quickly.