var a = {
  b: {
    ab: {
      abc: 1
    }
  }
}
console.log(a.b.ab.abc)
The output will be 1.
Is it in any way possible to determine the parents of 'a.b.ab.abc' without previously knowing them?
In otherwords, given a.b.ab.abc could one determine the a or a.b or a.b.ab?