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/0d7cb16e18534a9d58e1508838165925 to your computer and use it in GitHub Desktop.
Save veemish/0d7cb16e18534a9d58e1508838165925 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