我在这里学习联合材料,并在作为论点通过时,对原始价值提出了问题。 Saye 我的职能很简单:
var first = 5;
var second = 6;
function func(){
first+=second;
}
func();
alert(first); //outputs 11
因此,在这种情况下,第一种数值为11。 但是,如果我尝试先把它作为行使职能的理由,则首先仍然是5个。
var first = 5;
var second = 6;
function func(first){
first+=second;
}
func(first);
alert(first); //outputs 5
wondering if someone could explain this to me.