————————————————————————————————————
字符串数组
//1.先创建一个数组对象
var city = [];
//2. 字符串数组的创建
city["中国"] = ["北京","上海"];
//3.查看字符串数组
alert(city["中国"][0]);