Is there any way to get a key-value from an object's parent object? In the example below, I want to combine urlParent with section:
const linkItems = [
  {
    id: 1,
    name: 'Home Page',
    urlParent: '/home',
    subItems: [
      {
        subId: 1,
        name: 'Project 1',
        section: '#project1',
        get url() {
          //output /home#project1
        }
      }
    ]
  }
];
console.log(linkItems[0].subItems[0].url) // /home#project1;