この匿名関数では、出力が異なります。Chrome 開発者コンソールを使用しているか、Firefox Firebug を使用しているかによって異なります。なぜですか?
(function(){
var t =["one","two"];
console.log(t)
function a(m){
t[2]="three";
console.log(t)
};a(t)
function b(n){
t[3]="four";
console.log(t)
};b(t)
}())
["one", "two", "three", "four"]
["one", "two", "three", "four"]
["one", "two", "three", "four"] // chrome output
["one", "two"]
["one", "two", "three"]
["one", "two", "three", "four"]// firebug output