hello,
I have the below code
In the above code the alert message prints "tulu" twice. But I need to avoid duplicacy. Can anybody will help me to fix it.
Thanks in advance
I have the below code
Code:
<script language="javascript">
var myArray =new Array("tulu","dudu","tulu","milu")
for(i=0;i<myArray.length;i++)
{
alert(myArray[i])
}
</script>
Thanks in advance
Comment