Well, I have the following code:
<script type="text/javascript">
var mao1 = "goncalo1";
var mao2 = 1;
var mao3 = mao1+mao2;
window.alert(mao3);
</script>
What I wanted was for the var man3, to show goncalo2 and not goncalo11, how can I do that?