Accessing nested JavaScript properties via custom dynamic method
Given this JavaScript object, I want to access their nested properties via dynamic method starting with 'get' + a CamelCased attribute name (of course the attribute must be defined in the inital object) As far as I know, this can…