How to connect function name with var javascript ?
i want to connect myFunction
with var zz
.
i try to like this but not work, how can i do that ?
<script>
for(var zz = 0; zz < 3; zz++)
{
function myFunction'+var zz+'() {
-------------SOME CODEING---------------
}
}
</script>