Skip to content

Instantly share code, notes, and snippets.

@veemish
Created June 12, 2019 11:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veemish/77e28c843e457b3df007f75c312aa1e2 to your computer and use it in GitHub Desktop.
Save veemish/77e28c843e457b3df007f75c312aa1e2 to your computer and use it in GitHub Desktop.
<script>
var i;
var emp = new Array();
emp[0] = "LeonaldoDaVinci";
emp[1] = "Picaso";
emp[2] = "MichaelAngelo";
for (i=0;i<emp.length;i++){
document.write(emp[i] + "<br>");
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment