Created
January 13, 2011 09:02
-
-
Save thetekst/777609 to your computer and use it in GitHub Desktop.
Домашнее задание к 12-му уроку.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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