����JavaScript�Array�join ����

JavaScript�Array�join

���� ����var�array=new�Array(); ��������array[0]="Rose"; ��������array[1]="India"; ��������array[2]=".net"; ��������array[3]="Rohini";��� ��������document.write(""+"Element�of�the�array�before�joining�are�" +""+�""); ��������document.write("================="+�""); ��������for(var�i=0;i") ��������} ��������document.write(�""); ����array1�=�array.join("-");�� ����document.write(""+"Element�of�the�array�after�joining�are�" +""+�""); ��������document.write("================="+�""); ����document.write(array1);