how do i populate these following JSON data on a html input field on the screen ? this is the json arraylist
[{
"Bank Account Name": "State Bank",
"Currency Code": "4000",
"Deposit Date": "5/2/1794",
"Payment Channel": "check",}]
i have stored this above data in a JSON file how do i get it on the screen?
<input type="text" id="BankAccountName" />
<input type="text" id="CurrencyCode" />
<input type="text" id="DepositDate" />
<input type="text" id="PaymentChannel" />