标签:
【引用类型例子】
function chainStore()
{
var store1=[‘Nike China‘];
var store2=store1;
alert(store2[0]); //Nike China
store1[0]=‘Nike U.S.A.‘;
alert(store2[0]); //Nike U.S.A.
}
chainStore();
标签:
原文地址:http://www.cnblogs.com/maruco2020/p/4485858.html