This is the result of my console.log(params):

currency_id: falsecustomer_id: 127505"payment[account_name]": """payment[iban]": """payment[method]": "adyen_sepa"store_id: "1"
I got this from ajax call and when I am doing this onSuccess :
console.log(params.customer_id); // I got the right valueconsole.log(params.payment['method']) // I am getting undefinedvar obj = "payment['method']";console.log(params.obj) // still undefinedHow can I get teh value from payment[method] ? Thnx