My Code:
<script type="text/javascript">
for each ( var movie in ['Endhiran The Robot','Shivaji The Boss','Anbulla Rajinikanth'] )
document.writeln(movies + "<br/>");
</script>
In Firefox, I am getting the output as
Endhiran The Robot
Shivaji The Boss
Anbulla Rajinikanth
But in IE9 and Chrome Version 23.0.1271.95 m, for each is not working and nothing is written on the document
for eachshould be justfor– Tim Büthe Dec 11 '12 at 13:03moviesshould bemovie, right? and you should not usedocument.writeln/document.writeat all – Tim Büthe Dec 11 '12 at 13:05movie. One doubt, I usedforalone instead offor eachbut theoutputI am getting as0,1,2instead of thosemovie names– User1674987 Dec 11 '12 at 13:06