code3.js:8 Uncaught TypeError: Cannot read property 'charAt' of undefined at espaces_debut (code3.js:8) at onload (Ex4.htm:11)
In Ex4.htm :
<html>
<head>
<title>Ex4</title>
<script language="javascript" src="code3.js">
ch=prompt ("ch ") ;
alert (espaces_debut(ch));
</script>
</head>
<body onload="espaces_debut()">
</body>
</html>
IN code3.js :
function espaces_debut(ch)
{
i=-1;
do
{
i=i+1
}
while (ch.charAt(i)=' ') ;
return ( ch.substr(0,i-1) ) ;
}
I get this Error , help pls