Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
function funcArrayLength(){
var str = "1,2,3,4,5,6,8";
arr = str.split(",");
alert(arr.length);
}
//-->
</SCRIPT>
<form name="form1" >
<input type=button onclick="funcArrayLength()">
</form>