I am pretty new in JavaScript development and I am finding some problem concatenating 2 strings.
So, I done:
alert(value);
var pagina = string.concat("edi.do?serv=3.C&ids=", value);
alert(pagina);
The alert(value) show me the aspected result that is something like: 68661-68662 but the second alert don't show the value of the pagina variable so I think that something is going wrong in the concatenation.
What am I missing? How can I fix this issue?
I need to obtain a string like: edi.do?serv=3.C&ids=68661-68662
Tnx