0
I’m having this error in the following function:
function formaQueryConta(cpf){
var numConta= jsonDtContasCliente[(document.getElementById("listaContas").value)-1];
console.log(typeof(cpf)); //Diz que é String
console.log(typeof(numConta)); //Diz que é String
var parms = "&cpf="+cpf"&conta="+numConta; //O ERRO É APONTADO NESTA LINHA
ajaxCall("Persistencia.php?action=buscaConta" +parms, formaCanvas);
}
I couldn’t find anything in Stack to help me. Some light?