js callback 和 js 混淆

function test(a,callback){

a+=100;

callback(a)

}

function abc(a){

a+=100;

alert(a);

}

 

test(5,abc)

 

 

js 混淆