How can I translate this ASP code to JS code
<%
arrChannels = Split(Session("cam_no"), ",")
For Each strOneWord in arrChannels
response.write strOneWord & "<BR>"
Next
%>
To simply explain the ASP code on the above, all it does is to take a string (ie: 1,2,3,4,5) and...