Skip to content

Instantly share code, notes, and snippets.

@thetekst
Created January 13, 2011 09:02
Show Gist options
  • Save thetekst/777609 to your computer and use it in GitHub Desktop.
Save thetekst/777609 to your computer and use it in GitHub Desktop.
Домашнее задание к 12-му уроку.
<script type="text/javascript">
var city = ["Moscow", "Portugal", "UK", "Paris", "Italy"];
var count = [16516, 78848, 8754, 84784, 5588];
document.write(city[0] + " \- " + count[0] + "<br />" + city[1] + " \- " + count[1] + "<br />");
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment