var mychar;mychar="javascript";mychar="hello";
当变量名相同时就会发生覆盖,及最下面的会将上面的覆盖。所以输出的是hello
hello
document.write(mychar);
在页面粘贴下,就看到结果输出的是hello。