I have two objects - one containing formulas and other array object contains values. I want to club and do calculate output shown below.
Object-1
{
    SI : (PxTxR)/100,
    ratio: P1/P2
}
Object-2
[
    {
      P1:34053,
      P2:45506
    },
    {
      P:3403,
      T:3,
      R:7.35
      P1:34053,
      P2:45506
    }
]
Result :
{
    SI:750.36,
    ratio:0.74
}
 
     
    