Skip to content
Advertisement

How to use variables in dot notation like square bracket notation with variable depth

How can I access different JSON objects in JavaScript by a variable containing the attribute’s path?

JavaScript

This notation represents only one hierarchic level per set of brackets, of course. Is there an easy elegant way to access several levels with only one labeling variable like “one.two” and “one.two.three”?

Advertisement

Answer

You can create a function that will split the string with . (dot) as the delimiter into an array of strings, and use them to traverse the object in a reducer function.

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement