console.log(res.data.data.wallet.transactions);
How can I get transactions[] > 0{} > balance property's Value
console.log(res.data.data.wallet.transactions["0"].balance);
???
CodePudding user response:
Solution :
console.log(res.data.data.wallet.transactions[0][0].balance);