I have an object like
let arr = [
  {
    title: "hello",
    pivot: {
      id: 1,
      bid: 3
    }
  },
  {
    title: "home",
    pivot: {
      id: 2,
      bid: 3
    }
  },
  {
    title: "nice",
    pivot: {
      id: 3,
      bid: 3
    }
  }
];
I want to access its property dynamically. I want to access id property's value from pivot from first object of this array. And it's should be dynamic.
This is what I tried already.
let s = "0.pivot.id"
let res = arr[s]
console.log(res)
I can access by arr[0].pivot.id but this is not my case. I want it dynamically.
 
     
    